{"openapi":"3.1.0","info":{"title":"Open Mercato API","version":"0.7.0","description":"Auto-generated OpenAPI definition for all enabled modules."},"servers":[{"url":"https://server.tail3470ec.ts.net/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":"en"},{"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://server.tail3470ec.ts.net/api/auth/locale?locale=en\" \\\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":"en"}}}},"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://server.tail3470ec.ts.net/api/auth/locale\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"locale\\\": \\\"en\\\"\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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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 within the current tenant, if any.","tags":["Authentication & Accounts"],"parameters":[{"name":"userId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetParameters0Schema"},"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":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/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. 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","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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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).","tags":["Authentication & Accounts"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters2Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters3Schema"},"example":"string"},{"name":"name","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters4Schema"},"example":"string"},{"name":"organizationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"scopeToActiveOrganization","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters6Schema"},"example":true},{"name":"roleIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters7Schema"},"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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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":{"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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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. 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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/api/search/settings/vector-store\" \\\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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/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://server.tail3470ec.ts.net/api/feature_toggles/global/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/ops/customers":{"get":{"operationId":"ops_get_ops_customers","summary":"List customers","description":"Returns a paginated collection of customers in the current tenant and organization scope.","tags":["Operations"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetParameters2Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetParameters3Schema"},"example":"name"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetParameters4Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetParameters5Schema"},"example":1},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetParameters6Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated customers","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","taxId":null,"email":null,"phone":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/ops/customers?sortField=name&page=1&pageSize=50&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"ops_post_ops_customers","summary":"Create customer","description":"Creates a customer in the caller tenant and organization scope.","tags":["Operations"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","taxId":null,"email":null,"phone":null}}},"description":"Creates a customer in the caller tenant and organization scope."},"responses":{"201":{"description":"Customer created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/ops/customers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\",\n  \\\"taxId\\\": null,\n  \\\"email\\\": null,\n  \\\"phone\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"ops_put_ops_customers","summary":"Update customer","description":"Updates a customer. Send the record `updatedAt` as the optimistic-lock header.","tags":["Operations"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchema"},"example":{"taxId":null,"email":null,"phone":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a customer. Send the record `updatedAt` as the optimistic-lock header."},"responses":{"200":{"description":"Customer updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://server.tail3470ec.ts.net/api/ops/customers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"taxId\\\": null,\n  \\\"email\\\": null,\n  \\\"phone\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"ops_delete_ops_customers","summary":"Delete customer","description":"Soft-deletes a customer by id.","tags":["Operations"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes a customer by id."},"responses":{"200":{"description":"Customer deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsCustomersDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://server.tail3470ec.ts.net/api/ops/customers\" \\\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}},"/ops/sites":{"get":{"operationId":"ops_get_ops_sites","summary":"List sites","description":"Returns a paginated collection of sites in the current tenant and organization scope.","tags":["Operations"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesGetParameters2Schema"},"example":"string"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesGetParameters4Schema"},"example":"name"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesGetParameters5Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesGetParameters6Schema"},"example":1},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesGetParameters7Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated sites","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","customerId":null,"addressLine":null,"city":null,"country":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/ops/sites?sortField=name&page=1&pageSize=50&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"ops_post_ops_sites","summary":"Create site","description":"Creates a site. `customerId` is a scoped soft reference and is validated on write.","tags":["Operations"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","customerId":null,"addressLine":null,"city":null,"country":null}}},"description":"Creates a site. `customerId` is a scoped soft reference and is validated on write."},"responses":{"201":{"description":"Site created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/ops/sites\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\",\n  \\\"customerId\\\": null,\n  \\\"addressLine\\\": null,\n  \\\"city\\\": null,\n  \\\"country\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"ops_put_ops_sites","summary":"Update site","description":"Updates a site. Send the record `updatedAt` as the optimistic-lock header.","tags":["Operations"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchema"},"example":{"customerId":null,"addressLine":null,"city":null,"country":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a site. Send the record `updatedAt` as the optimistic-lock header."},"responses":{"200":{"description":"Site updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://server.tail3470ec.ts.net/api/ops/sites\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"customerId\\\": null,\n  \\\"addressLine\\\": null,\n  \\\"city\\\": null,\n  \\\"country\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"ops_delete_ops_sites","summary":"Delete site","description":"Soft-deletes a site by id.","tags":["Operations"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes a site by id."},"responses":{"200":{"description":"Site deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsSitesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://server.tail3470ec.ts.net/api/ops/sites\" \\\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}},"/ops/users":{"get":{"operationId":"ops_get_ops_users","summary":"List assignable operators","description":"Returns selectable users in the caller tenant and organization scope.","tags":["Operations"],"parameters":[],"responses":{"200":{"description":"Assignable operators.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsUsersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"value":"string","label":"string"}]}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsUsersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsUsersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsUsersGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/ops/users\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/ops/work-orders/assigned":{"get":{"operationId":"ops_get_ops_work_orders_assigned","summary":"List the open work orders the calling operator may work on","description":"Returns open and in-progress work orders in the caller scope: those the caller is assigned to, plus those with no assignees at all.","tags":["Operations"],"parameters":[],"responses":{"200":{"description":"Work orders the operator may pick up.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","number":"string","title":"string","status":"string","priority":"string","customerName":null,"siteName":null,"scheduledStart":null,"assignedToMe":true,"startable":true}]}}}},"400":{"description":"Organization scope could not be resolved","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/ops/work-orders/assigned\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/ops/work-orders/by-number":{"get":{"operationId":"ops_get_ops_work_orders_by_number","summary":"Resolve one work order from the number typed or scanned on a terminal","description":"Returns the operator tile for the work order carrying this number in the caller scope, including work orders that are already closed (`startable: false`). A work order the caller may not pick up is reported as not found.","tags":["Operations"],"parameters":[],"responses":{"200":{"description":"The resolved work order.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchema"},"example":{"item":{"id":"00000000-0000-4000-8000-000000000000","number":"string","title":"string","status":"string","priority":"string","customerName":null,"siteName":null,"scheduledStart":null,"assignedToMe":true,"startable":true}}}}},"400":{"description":"Missing number, or unresolvable organization scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"No such work order in the caller scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/ops/work-orders/by-number\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/ops/work-orders":{"get":{"operationId":"ops_get_ops_work_orders","summary":"List work orders","description":"Returns a paginated collection of work orders in the current tenant and organization scope.","tags":["Operations"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetParameters2Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetParameters3Schema"},"example":"string"},{"name":"priority","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetParameters4Schema"},"example":"normal"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"siteId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetParameters7Schema"},"example":"number"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetParameters8Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetParameters9Schema"},"example":1},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetParameters10Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated work orders","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","number":"string","title":"string","description":null,"customerId":null,"siteId":null,"status":"string","priority":"string","scheduledStart":null,"scheduledEnd":null,"closedAt":null,"createdAt":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/ops/work-orders?sortField=created_at&page=1&pageSize=50&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"ops_post_ops_work_orders","summary":"Create work order","description":"Creates a work order. The `WO-YYYY-#####` number is allocated server-side and is unique per tenant.","tags":["Operations"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchema"},"example":{"title":"string","description":null,"customerId":null,"siteId":null,"status":"open","priority":"normal","scheduledStart":null,"scheduledEnd":null}}},"description":"Creates a work order. The `WO-YYYY-#####` number is allocated server-side and is unique per tenant."},"responses":{"201":{"description":"Work Order created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/ops/work-orders\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"title\\\": \\\"string\\\",\n  \\\"description\\\": null,\n  \\\"customerId\\\": null,\n  \\\"siteId\\\": null,\n  \\\"status\\\": \\\"open\\\",\n  \\\"priority\\\": \\\"normal\\\",\n  \\\"scheduledStart\\\": null,\n  \\\"scheduledEnd\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"ops_put_ops_work_orders","summary":"Update work order","description":"Updates a work order. `status` is not accepted here — use POST /api/ops/work-orders/{id}/status so the lifecycle transition is validated.","tags":["Operations"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","description":null,"customerId":null,"siteId":null,"scheduledStart":null,"scheduledEnd":null}}},"description":"Updates a work order. `status` is not accepted here — use POST /api/ops/work-orders/{id}/status so the lifecycle transition is validated."},"responses":{"200":{"description":"Work Order updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://server.tail3470ec.ts.net/api/ops/work-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  \\\"description\\\": null,\n  \\\"customerId\\\": null,\n  \\\"siteId\\\": null,\n  \\\"scheduledStart\\\": null,\n  \\\"scheduledEnd\\\": null\n}\""}],"x-require-auth":true},"delete":{"operationId":"ops_delete_ops_work_orders","summary":"Delete work order","description":"Soft-deletes a work order by id.","tags":["Operations"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes a work order by id."},"responses":{"200":{"description":"Work Order deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://server.tail3470ec.ts.net/api/ops/work-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}},"/ops/work-orders/{id}/assignees":{"get":{"operationId":"ops_get_ops_work_orders_id_assignees","summary":"List work order assignees","description":"Returns the operator user ids currently assigned to a work order.","tags":["Operations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesGetParameters0Schema"}}],"responses":{"200":{"description":"Assigned operators.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"userId":"00000000-0000-4000-8000-000000000000"}]}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Work order not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/ops/work-orders/:id/assignees\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"ops_put_ops_work_orders_id_assignees","summary":"Replace work order assignees","description":"Replaces the entire assignee set. Idempotent: re-sending the same list converges on the same rows. Send the work order `updatedAt` as the optimistic-lock header.","tags":["Operations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutRequestBodyContentApplicationJsonSchema"},"example":{"userIds":["00000000-0000-4000-8000-000000000000"]}}}},"responses":{"200":{"description":"Assignees replaced.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","userIds":["00000000-0000-4000-8000-000000000000"],"updatedAt":null}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Work order not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stale version","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://server.tail3470ec.ts.net/api/ops/work-orders/:id/assignees\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"userIds\\\": [\n    \\\"00000000-0000-4000-8000-000000000000\\\"\n  ]\n}\""}],"x-require-auth":true}},"/ops/work-orders/{id}/status":{"post":{"operationId":"ops_post_ops_work_orders_id_status","summary":"Change a work order status","description":"Moves a work order through draft → open → in_progress → done, or to cancelled. Rejects a transition the lifecycle does not allow. Send the record `updatedAt` as the optimistic-lock header.","tags":["Operations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostRequestBodyContentApplicationJsonSchema"},"example":{"status":"draft"}}}},"responses":{"200":{"description":"Status applied.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","status":"string","previousStatus":"string","updatedAt":null}}}},"400":{"description":"Invalid or disallowed transition","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Work order not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stale version or unchanged status","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/ops/work-orders/:id/status\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"status\\\": \\\"draft\\\"\n}\""}],"x-require-auth":true}},"/time/operations":{"get":{"operationId":"time_get_time_operations","summary":"List operations","description":"Returns a paginated collection of operations in the current tenant and organization scope.","tags":["Time tracking"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetParameters2Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetParameters3Schema"},"example":"name"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetParameters4Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetParameters5Schema"},"example":1},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetParameters6Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated operations","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/time/operations?sortField=name&page=1&pageSize=50&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"time_post_time_operations","summary":"Create operation","description":"Creates an operation label that sessions may reference.","tags":["Time tracking"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string"}}},"description":"Creates an operation label that sessions may reference."},"responses":{"201":{"description":"Operation created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/time/operations\" \\\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":"time_put_time_operations","summary":"Update operation","description":"Renames an operation. Send the record `updatedAt` as the optimistic-lock header.","tags":["Time tracking"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Renames an operation. Send the record `updatedAt` as the optimistic-lock header."},"responses":{"200":{"description":"Operation updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://server.tail3470ec.ts.net/api/time/operations\" \\\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":"time_delete_time_operations","summary":"Delete operation","description":"Soft-deletes an operation. Sessions keep their scalar `operation_id`, so historical labels stay resolvable.","tags":["Time tracking"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes an operation. Sessions keep their scalar `operation_id`, so historical labels stay resolvable."},"responses":{"200":{"description":"Operation deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeOperationsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://server.tail3470ec.ts.net/api/time/operations\" \\\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}},"/time/sessions":{"get":{"operationId":"time_get_time_sessions","summary":"List time sessions","description":"Returns a paginated collection of time sessions in the current tenant and organization scope.","tags":["Time tracking"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"workOrderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"userId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetParameters4Schema"},"example":"string"},{"name":"operationId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetParameters6Schema"},"example":"started_at"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetParameters7Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetParameters8Schema"},"example":1},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetParameters9Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated time sessions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","workOrderId":"00000000-0000-4000-8000-000000000000","userId":"00000000-0000-4000-8000-000000000000","status":"string","startedAt":null,"endedAt":null,"pauseStartedAt":null,"activeSince":null,"durationWorkedSeconds":1,"note":null,"operationId":null,"voided":true,"voidReason":null,"createdAt":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/time/sessions?sortField=started_at&page=1&pageSize=50&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/time/sessions/start":{"post":{"operationId":"time_post_time_sessions_start","summary":"Start a time session on a work order","description":"Opens a running session for the authenticated operator. Requires an operation from the tenant catalog, the work order to be open or in progress, the operator to be assigned when the work order names assignees, and the operator to have no other running or paused session anywhere in the tenant.","tags":["Time tracking"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchema"},"example":{"workOrderId":"00000000-0000-4000-8000-000000000000","operationId":"00000000-0000-4000-8000-000000000000","note":null}}}},"responses":{"201":{"description":"Session started.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","workOrderId":"00000000-0000-4000-8000-000000000000","status":"string","previousStatus":"string","durationWorkedSeconds":1,"updatedAt":null}}}},"400":{"description":"Missing or unknown operation, invalid payload, or the work order does not accept sessions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Time tracking disabled, or the operator is not assigned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"The operator already has an active session","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/time/sessions/start\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"workOrderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"operationId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"note\\\": null\n}\""}],"x-require-auth":true}},"/time/settings":{"get":{"operationId":"time_get_time_settings","summary":"Resolve the tr3.time feature flag","description":"Returns whether time tracking is enabled for the caller tenant.","tags":["Time tracking"],"parameters":[],"responses":{"200":{"description":"Resolved settings.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSettingsGetResponses200ContentApplicationJsonSchema"},"example":{"enabled":true}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSettingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSettingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSettingsGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/time/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/time/sessions/{id}/pause":{"post":{"operationId":"time_post_time_sessions_id_pause","summary":"Pause a running time session","description":"Freezes the clock: the running segment is banked into `durationWorkedSeconds` and `pauseStartedAt` is set. Only the operator who owns the session may pause it. Send the session `updatedAt` as the optimistic-lock header.","tags":["Time tracking"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Session paused.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","workOrderId":"00000000-0000-4000-8000-000000000000","status":"string","previousStatus":"string","durationWorkedSeconds":1,"updatedAt":null}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"The session belongs to another operator","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Session not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stale version, or the session is not running","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/time/sessions/:id/pause\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true}},"/time/sessions/{id}/resume":{"post":{"operationId":"time_post_time_sessions_id_resume","summary":"Resume a paused time session","description":"Opens a new running segment and clears `pauseStartedAt`. `startedAt` is left untouched — it records when the shift began, not the current segment. Send the session `updatedAt` as the optimistic-lock header.","tags":["Time tracking"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Session resumed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","workOrderId":"00000000-0000-4000-8000-000000000000","status":"string","previousStatus":"string","durationWorkedSeconds":1,"updatedAt":null}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"The session belongs to another operator","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Session not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stale version, or the session is not paused","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/time/sessions/:id/resume\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true}},"/time/sessions/{id}/stop":{"post":{"operationId":"time_post_time_sessions_id_stop","summary":"Stop a running or paused time session","description":"Finalizes `durationWorkedSeconds`, sets `endedAt`, and frees the operator to start elsewhere. A stopped session can never be deleted — use the void endpoint to correct one. Send the session `updatedAt` as the optimistic-lock header.","tags":["Time tracking"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostRequestBodyContentApplicationJsonSchema"},"example":{"note":null}}}},"responses":{"200":{"description":"Session stopped.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","workOrderId":"00000000-0000-4000-8000-000000000000","status":"string","previousStatus":"string","durationWorkedSeconds":1,"updatedAt":null}}}},"400":{"description":"Invalid request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"The session belongs to another operator","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Session not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stale version, or the session is already stopped","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/time/sessions/:id/stop\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"note\\\": null\n}\""}],"x-require-auth":true}},"/time/sessions/{id}/void":{"post":{"operationId":"time_post_time_sessions_id_void","summary":"Void a time session with a reason","description":"Excludes the session from every total while keeping the record and the stated reason. A still-open session is stopped first, so a voided record never leaves its operator clocked in. Send the session `updatedAt` as the optimistic-lock header.","tags":["Time tracking"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostRequestBodyContentApplicationJsonSchema"},"example":{"reason":"string"}}}},"responses":{"200":{"description":"Session voided.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","workOrderId":"00000000-0000-4000-8000-000000000000","status":"string","previousStatus":"string","durationWorkedSeconds":1,"updatedAt":null}}}},"400":{"description":"A reason is required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Session not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stale version, or the session is already voided","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/time/sessions/:id/void\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"reason\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/workforce/kiosk/bind":{"post":{"operationId":"workforce_post_workforce_kiosk_bind","summary":"Bind this device to a tenant with an unlock code","description":"Claims a single-use unlock code, creates a kiosk device in the code's tenant and sets the `tr3_kiosk` cookie. Invalid, used, expired and cancelled codes return one identical 400. Failed attempts are rate limited per IP and per browser.","tags":["Workforce"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string"}}}},"responses":{"200":{"description":"Bound.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"deviceLabel":null,"tenantName":"string"}}}},"400":{"description":"Invalid, used, expired or cancelled code (`workforce.errors.unlock_code_invalid`)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"429":{"description":"Too many failed codes","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchema"},"example":{"error":"workforce.errors.kiosk_locked","retryAfter":1}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/workforce/kiosk/bind\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\"\n}\""}]}},"/workforce/kiosk/devices":{"get":{"operationId":"workforce_get_workforce_kiosk_devices","summary":"List kiosk devices of the tenant","description":"Live devices plus devices revoked in the last 7 days. Never includes the kiosk token or its hash.","tags":["Workforce"],"parameters":[],"responses":{"200":{"description":"Devices.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","label":null,"boundAt":null,"lastSeenAt":null,"lockedUntil":null,"revokedAt":null,"status":"active"}],"total":1,"totalPages":1}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/workforce/kiosk/devices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/workforce/kiosk/status":{"get":{"operationId":"workforce_get_workforce_kiosk_status","summary":"Whether this device is bound to a tenant","description":"Resolves the `tr3_kiosk` cookie to a live kiosk device. Returns `{ bound: false }` for no, a revoked or an unknown binding (and clears a dead cookie), or the device label, tenant name and current lock expiry. Touches `last_seen_at`.","tags":["Workforce"],"parameters":[],"responses":{"200":{"description":"Binding status.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchema"},"example":{"bound":false}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/workforce/kiosk/status\" \\\n  -H \"Accept: application/json\""}]}},"/workforce/kiosk/unbind":{"post":{"operationId":"workforce_post_workforce_kiosk_unbind","summary":"Unbind this device from its tenant","description":"Requires the `tr3_kiosk` cookie. Revokes the kiosk device, ends every operator session issued through it and clears the kiosk and session cookies.","tags":["Workforce"],"parameters":[],"responses":{"200":{"description":"Unbound.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnbindPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"403":{"description":"No live binding on this device (`workforce.errors.kiosk_unbound`)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnbindPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnbindPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/workforce/kiosk/unbind\" \\\n  -H \"Accept: application/json\""}]}},"/workforce/kiosk/unlock-codes":{"get":{"operationId":"workforce_get_workforce_kiosk_unlock_codes","summary":"List pending kiosk unlock codes","description":"Unused, uncancelled and unexpired unlock codes of the tenant. Never includes the code itself.","tags":["Workforce"],"parameters":[],"responses":{"200":{"description":"Pending codes.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","label":null,"expiresAt":"string","createdAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/workforce/kiosk/unlock-codes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"workforce_post_workforce_kiosk_unlock_codes","summary":"Generate a kiosk unlock code","description":"Issues a single-use `XXXX-XXXX` code valid for 15 minutes, scoped to the caller's tenant and organization. The plaintext appears only in this response.","tags":["Workforce"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostRequestBodyContentApplicationJsonSchema"},"example":{"label":null}}}},"responses":{"201":{"description":"Code issued.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","label":null,"expiresAt":"string","createdAt":null,"code":"string"}}}},"400":{"description":"Invalid label or no organization context","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/workforce/kiosk/unlock-codes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"label\\\": null\n}\""}],"x-require-auth":true}},"/workforce/operator/login":{"post":{"operationId":"workforce_post_workforce_operator_login","summary":"Sign in a production operator with a PIN","description":"Requires a live kiosk binding (`tr3_kiosk` cookie). Resolves the operator by the bound device's tenant and the PIN fingerprint, verifies the bcrypt hash and issues the standard staff session cookies for the operator's backing user. Every wrong-PIN mode returns the same 401 and counts against the device; 5 failures lock the device for 300 seconds.","tags":["Workforce"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostRequestBodyContentApplicationJsonSchema"},"example":{"pin":"string"}}}},"responses":{"200":{"description":"Signed in.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"redirect":"string","operator":{"id":"00000000-0000-4000-8000-000000000000","name":"string"}}}}},"401":{"description":"Unknown PIN, or a deactivated operator","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"This device is not bound to a tenant (`workforce.errors.kiosk_unbound`)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"429":{"description":"Device locked after failed PINs (`workforce.errors.kiosk_locked`, with `retryAfter`), or per-IP rate limit","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchema"},"example":{"error":"workforce.errors.kiosk_locked","retryAfter":1}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/workforce/operator/login\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"pin\\\": \\\"string\\\"\n}\""}]}},"/workforce/operator/logout":{"post":{"operationId":"workforce_post_workforce_operator_logout","summary":"Sign the current operator out of the terminal","description":"Clears the session cookies and revokes the server-side session so a shared tablet is handed over clean. Keeps the `tr3_kiosk` binding cookie.","tags":["Workforce"],"parameters":[],"responses":{"200":{"description":"Signed out.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLogoutPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/workforce/operator/logout\" \\\n  -H \"Accept: application/json\""}]}},"/workforce/operator/me":{"get":{"operationId":"workforce_get_workforce_operator_me","summary":"Resolve the production operator behind the current session","description":"Requires a live kiosk binding in the session tenant. Returns the operator row linked to the authenticated user, or a null operator id for an office user, plus the device label.","tags":["Workforce"],"parameters":[],"responses":{"200":{"description":"Operator identity.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchema"},"example":{"operatorId":null,"userId":"00000000-0000-4000-8000-000000000000","name":"string","code":null,"deviceLabel":null}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"No live kiosk binding for the session tenant (`workforce.errors.kiosk_unbound`)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/workforce/operator/me\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/workforce/operators":{"get":{"operationId":"workforce_get_workforce_operators","summary":"List production operators","description":"Returns a paginated collection of production operators in the current tenant and organization scope.","tags":["Workforce"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetParameters1Schema"},"example":1},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetParameters2Schema"},"example":"asc"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetParameters3Schema"},"example":"name"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetParameters4Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"active","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetParameters7Schema"},"example":"true"}],"responses":{"200":{"description":"Paginated production operators","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","userId":"00000000-0000-4000-8000-000000000000","code":null,"name":"string","active":true,"lastLoginAt":null,"createdAt":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/workforce/operators?page=1&pageSize=50&sortDir=asc&sortField=name\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"workforce_post_workforce_operators","summary":"Create production operator","description":"Creates a production operator. When `userId` is omitted an `auth` user with the `employee` role is provisioned for the operator. The PIN is stored as a bcrypt hash plus a keyed fingerprint and is never returned; it must not already be in use by another operator of the same tenant (409 `workforce.errors.pin_taken`).","tags":["Workforce"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","pin":"string","userId":null}}},"description":"Creates a production operator. When `userId` is omitted an `auth` user with the `employee` role is provisioned for the operator. The PIN is stored as a bcrypt hash plus a keyed fingerprint and is never returned; it must not already be in use by another operator of the same tenant (409 `workforce.errors.pin_taken`)."},"responses":{"201":{"description":"Production Operator created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/workforce/operators\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\",\n  \\\"pin\\\": \\\"string\\\",\n  \\\"userId\\\": null\n}\""}],"x-require-auth":true},"put":{"operationId":"workforce_put_workforce_operators","summary":"Update production operator","description":"Updates a production operator. Omit `pin` to leave the current PIN unchanged.","tags":["Workforce"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a production operator. Omit `pin` to leave the current PIN unchanged."},"responses":{"200":{"description":"Production Operator updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://server.tail3470ec.ts.net/api/workforce/operators\" \\\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":"workforce_delete_workforce_operators","summary":"Delete production operator","description":"Soft-deletes a production operator. The backing user is kept.","tags":["Workforce"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes a production operator. The backing user is kept."},"responses":{"200":{"description":"Production Operator deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://server.tail3470ec.ts.net/api/workforce/operators\" \\\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}},"/workforce/settings/work-order-entry-mode":{"get":{"operationId":"workforce_get_workforce_settings_work_order_entry_mode","summary":"Resolve how the terminal asks for a work order","description":"Returns the tenant value of the `tr3.work_order_entry_mode` string toggle: `list`, `type` or `scan`. Falls back to `list` whenever the toggle cannot be resolved.","tags":["Workforce"],"parameters":[],"responses":{"200":{"description":"Resolved settings.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses200ContentApplicationJsonSchema"},"example":{"workOrderEntryMode":"list"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/workforce/settings/work-order-entry-mode\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"workforce_put_workforce_settings_work_order_entry_mode","summary":"Change the work order entry mode for the caller tenant","description":"Records a per-tenant override on the `tr3.work_order_entry_mode` feature toggle. The tenant is taken from the session, never from the payload.","tags":["Workforce"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModePutRequestBodyContentApplicationJsonSchema"},"example":{"workOrderEntryMode":"list"}}}},"responses":{"200":{"description":"Mode changed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModePutResponses200ContentApplicationJsonSchema"},"example":{"workOrderEntryMode":"list"}}}},"400":{"description":"Invalid mode, or the toggle definition has not been seeded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModePutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModePutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Missing workforce.settings.manage","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModePutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://server.tail3470ec.ts.net/api/workforce/settings/work-order-entry-mode\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"workOrderEntryMode\\\": \\\"list\\\"\n}\""}],"x-require-auth":true}},"/workforce/kiosk/devices/{id}":{"delete":{"operationId":"workforce_delete_workforce_kiosk_devices_id","summary":"Revoke a kiosk device and end its operator sessions","tags":["Workforce"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesIdDeleteParameters0Schema"}}],"responses":{"200":{"description":"Revoked.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"No device with that id in this tenant","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesIdDeleteResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://server.tail3470ec.ts.net/api/workforce/kiosk/devices/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/workforce/kiosk/unlock-codes/{id}":{"delete":{"operationId":"workforce_delete_workforce_kiosk_unlock_codes_id","summary":"Cancel an unused kiosk unlock code","tags":["Workforce"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesIdDeleteParameters0Schema"}}],"responses":{"200":{"description":"Cancelled.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"No pending code with that id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesIdDeleteResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://server.tail3470ec.ts.net/api/workforce/kiosk/unlock-codes/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/media/links":{"post":{"operationId":"media_post_media_links","summary":"Create a media link","description":"Attaches an existing media object to a record of any module through the polymorphic reference triple. Repeating the same object, reference and role returns the existing link.","tags":["Media"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchema"},"example":{"refModule":"string","refType":"string","refId":"00000000-0000-4000-8000-000000000000","mediaId":"00000000-0000-4000-8000-000000000000","role":null}}}},"responses":{"201":{"description":"Link created (or already present).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","mediaId":"00000000-0000-4000-8000-000000000000","refModule":"string","refType":"string","refId":"00000000-0000-4000-8000-000000000000","role":null,"createdAt":null}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Media is disabled for this tenant","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Media object not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"The media object is voided","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/media/links\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"refModule\\\": \\\"string\\\",\n  \\\"refType\\\": \\\"string\\\",\n  \\\"refId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"mediaId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"role\\\": null\n}\""}],"x-require-auth":true}},"/media":{"get":{"operationId":"media_get_media","summary":"List media attached to one or more records","description":"Filters by a single `refModule`/`refType`/`refId` triple, by several triples at once through `refs` (comma-separated `module:type:id`), or by explicit `ids`. Voided objects are excluded unless `includeVoided` is set.","tags":["Media"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMediaGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMediaGetParameters1Schema"},"example":"string"},{"name":"refModule","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMediaGetParameters2Schema"},"example":"string"},{"name":"refType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMediaGetParameters3Schema"},"example":"string"},{"name":"refId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMediaGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"refs","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMediaGetParameters5Schema"},"example":"string"},{"name":"kind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMediaGetParameters6Schema"},"example":"image"},{"name":"role","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMediaGetParameters7Schema"},"example":"string"},{"name":"includeVoided","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMediaGetParameters8Schema"},"example":true},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMediaGetParameters9Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMediaGetParameters10Schema"},"example":1}],"responses":{"200":{"description":"Matching media.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","kind":"string","filename":"string","contentType":"string","byteSize":1,"checksum":null,"createdByUserId":null,"voided":true,"createdAt":null,"updatedAt":null,"links":[{"refModule":"string","refType":"string","refId":"00000000-0000-4000-8000-000000000000","role":null}],"contentUrl":"string"}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"400":{"description":"Invalid query","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/media?includeVoided=false&page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/media/settings":{"get":{"operationId":"media_get_media_settings","summary":"Resolve the tr3.media feature flag and upload limits","description":"Returns whether media is enabled for the caller tenant, the maximum upload size and the accepted content types.","tags":["Media"],"parameters":[],"responses":{"200":{"description":"Resolved settings.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaSettingsGetResponses200ContentApplicationJsonSchema"},"example":{"enabled":true,"maxUploadBytes":1,"acceptedContentTypes":["string"]}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaSettingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaSettingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaSettingsGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/media/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/media/upload":{"post":{"operationId":"media_post_media_upload","summary":"Upload a file, photo or signature PNG","description":"Stores one object (max 20 MB; jpeg, png, webp or pdf) and optionally attaches it to a record in the same request. The caller module is responsible for its own status gates before asking for the upload.","tags":["Media"],"parameters":[],"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchema"},"example":{"file":"string"}}}},"responses":{"201":{"description":"Media stored.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","kind":"string","filename":"string","contentType":"string","byteSize":1,"checksum":null,"createdByUserId":null,"voided":true,"createdAt":null,"updatedAt":null,"links":[{"refModule":"string","refType":"string","refId":"00000000-0000-4000-8000-000000000000","role":null}],"contentUrl":"string","link":null}}}},"400":{"description":"Missing file or malformed reference","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Media is disabled for this tenant","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"413":{"description":"File exceeds the 20 MB limit","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses413ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"415":{"description":"Content type is not allow-listed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses415ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/media/upload\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: multipart/form-data\" \\\n  -d \"{\n  \\\"file\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/media/{id}/content":{"get":{"operationId":"media_get_media_id_content","summary":"Stream the stored bytes","description":"Serves one media object to a caller holding `media.read`, or to anyone presenting a valid short-lived `token` minted by the signed-url endpoint. Voided objects are refused.","tags":["Media"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMediaIdContentGetParameters0Schema"}}],"responses":{"200":{"description":"The stored bytes.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdContentGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"No session and no valid token","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdContentGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Not found in scope, or voided","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdContentGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdContentGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/media/:id/content\" \\\n  -H \"Accept: application/json\""}]}},"/media/{id}":{"get":{"operationId":"media_get_media_id","summary":"Read one media object","description":"Returns filename, content type, size, checksum and every link the object carries in scope.","tags":["Media"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMediaIdGetParameters0Schema"}}],"responses":{"200":{"description":"The media object.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","kind":"string","filename":"string","contentType":"string","byteSize":1,"checksum":null,"createdByUserId":null,"voided":true,"createdAt":null,"updatedAt":null,"links":[{"refModule":"string","refType":"string","refId":"00000000-0000-4000-8000-000000000000","role":null}],"contentUrl":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/media/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/media/{id}/signed-url":{"post":{"operationId":"media_post_media_id_signed_url","summary":"Create a short-lived download link","description":"Returns a URL valid for 15 minutes that serves this one object without a session.","tags":["Media"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostParameters0Schema"}}],"responses":{"200":{"description":"Signed URL.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostResponses200ContentApplicationJsonSchema"},"example":{"url":"string","expiresAt":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Not found in scope, or voided","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/media/:id/signed-url\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/media/{id}/void":{"post":{"operationId":"media_post_media_id_void","summary":"Soft-hide a media object","description":"Marks the object voided: galleries stop listing it and the content route refuses it. The row and the bytes survive — there is no hard delete in the MVP. Send the record `updatedAt` as the optimistic-lock header.","tags":["Media"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Object voided.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchema"},"example":{"checksum":null,"createdByUserId":null,"createdAt":null,"updatedAt":null}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stale version, or already voided","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/media/:id/void\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-auth":true}},"/forms_reports/settings":{"get":{"operationId":"forms_reports_get_forms_reports_settings","summary":"Resolve the tr3.forms_reports feature flag","description":"Returns whether forms and reports are enabled for the caller tenant.","tags":["Forms and reports"],"parameters":[],"responses":{"200":{"description":"Resolved settings.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSettingsGetResponses200ContentApplicationJsonSchema"},"example":{"enabled":true}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSettingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSettingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSettingsGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/forms_reports/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/forms_reports/submissions":{"get":{"operationId":"forms_reports_get_forms_reports_submissions","summary":"List form submissions","description":"Returns a paginated collection of form submissions in the current tenant and organization scope.","tags":["Forms and reports"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"workOrderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"templateId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"templateIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetParameters4Schema"},"example":"string"},{"name":"qcIssueId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"submittedByUserId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetParameters7Schema"},"example":"submitted_at"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetParameters8Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetParameters9Schema"},"example":1},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetParameters10Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated form submissions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","workOrderId":"00000000-0000-4000-8000-000000000000","templateId":"00000000-0000-4000-8000-000000000000","qcIssueId":null,"templateName":"string","templateSchemaVersion":1,"status":"string","payload":{},"submittedByUserId":null,"submittedAt":null,"pdfMediaId":null,"pdfStatus":"string","voided":true,"voidReason":null,"createdAt":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/forms_reports/submissions?sortField=submitted_at&page=1&pageSize=50&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/forms_reports/submissions/submit":{"post":{"operationId":"forms_reports_post_forms_reports_submissions_submit","summary":"File a form submission against a work order","description":"Requires a work order that is open or in progress, a published template, and a payload that satisfies the template definition frozen at submit time. Photos and signatures are referenced by media id. Submissions cannot be edited afterwards — use the void endpoint to correct one.","tags":["Forms and reports"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchema"},"example":{"workOrderId":"00000000-0000-4000-8000-000000000000","templateId":"00000000-0000-4000-8000-000000000000","qcIssueId":null,"payload":{}}}}},"responses":{"201":{"description":"Submission filed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","workOrderId":"00000000-0000-4000-8000-000000000000","templateId":"00000000-0000-4000-8000-000000000000","templateName":"string","templateSchemaVersion":1,"status":"string","pdfStatus":"string","pdfMediaId":null,"voided":true,"submittedAt":null,"updatedAt":null}}}},"400":{"description":"Invalid payload, work order not accepting submissions, or template not published","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forms are disabled for this tenant","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/forms_reports/submissions/submit\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"workOrderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"templateId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"qcIssueId\\\": null,\n  \\\"payload\\\": {}\n}\""}],"x-require-auth":true}},"/forms_reports/templates/import-llm":{"post":{"operationId":"forms_reports_post_forms_reports_templates_import_llm","summary":"Create a draft template from an uploaded PDF or photo","description":"Reads a PDF or photo already uploaded through the media module and creates a DRAFT form template from it, with `source=llm_import`. The import never publishes: an administrator reviews and publishes the draft. When no model provider is configured the draft is a starter skeleton and `extracted` is false.","tags":["Forms and reports"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostRequestBodyContentApplicationJsonSchema"},"example":{"mediaId":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"201":{"description":"Draft template created.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","name":"string","purpose":"string","fieldCount":1,"extracted":true}}}},"400":{"description":"Invalid payload, unknown document, or unsupported file type","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forms are disabled for this tenant","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/forms_reports/templates/import-llm\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"mediaId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true}},"/forms_reports/templates":{"get":{"operationId":"forms_reports_get_forms_reports_templates","summary":"List form templates","description":"Returns a paginated collection of form templates in the current tenant and organization scope.","tags":["Forms and reports"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetParameters2Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetParameters3Schema"},"example":"string"},{"name":"purpose","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetParameters4Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetParameters5Schema"},"example":"name"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetParameters6Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetParameters7Schema"},"example":1},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetParameters8Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated form templates","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","description":null,"status":"string","purpose":"string","source":"string","schemaVersion":1,"createdAt":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/forms_reports/templates?sortField=name&page=1&pageSize=50&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"forms_reports_post_forms_reports_templates","summary":"Create form template","description":"Creates a template. New templates start as drafts unless a status is given.","tags":["Forms and reports"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","description":null,"definition":{"sections":[{"id":"string","title":"string","fields":[{"id":"string","type":"text","label":"string"}]}]}}}},"description":"Creates a template. New templates start as drafts unless a status is given."},"responses":{"201":{"description":"Form Template created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/forms_reports/templates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\",\n  \\\"description\\\": null,\n  \\\"definition\\\": {\n    \\\"sections\\\": [\n      {\n        \\\"id\\\": \\\"string\\\",\n        \\\"title\\\": \\\"string\\\",\n        \\\"fields\\\": [\n          {\n            \\\"id\\\": \\\"string\\\",\n            \\\"type\\\": \\\"text\\\",\n            \\\"label\\\": \\\"string\\\"\n          }\n        ]\n      }\n    ]\n  }\n}\""}],"x-require-auth":true},"put":{"operationId":"forms_reports_put_forms_reports_templates","summary":"Update form template","description":"Updates a template, including publish and archive through `status`. Changing `definition` bumps `schemaVersion`, which submissions freeze. Send the record `updatedAt` as the optimistic-lock header.","tags":["Forms and reports"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchema"},"example":{"description":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Updates a template, including publish and archive through `status`. Changing `definition` bumps `schemaVersion`, which submissions freeze. Send the record `updatedAt` as the optimistic-lock header."},"responses":{"200":{"description":"Form Template updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://server.tail3470ec.ts.net/api/forms_reports/templates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"description\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-auth":true},"delete":{"operationId":"forms_reports_delete_forms_reports_templates","summary":"Delete form template","description":"Soft-deletes a template. Submissions keep their scalar `templateId` and their own frozen definition, so filed protocols stay readable.","tags":["Forms and reports"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Soft-deletes a template. Submissions keep their scalar `templateId` and their own frozen definition, so filed protocols stay readable."},"responses":{"200":{"description":"Form Template deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://server.tail3470ec.ts.net/api/forms_reports/templates\" \\\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}},"/forms_reports/submissions/{id}/void":{"post":{"operationId":"forms_reports_post_forms_reports_submissions_id_void","summary":"Withdraw a filed submission","description":"Marks the submission voided with a mandatory reason. The record and its attachments survive — there is no edit and no delete. Send the record `updatedAt` as the optimistic-lock header.","tags":["Forms and reports"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostRequestBodyContentApplicationJsonSchema"},"example":{"reason":"string"}}}},"responses":{"200":{"description":"Submission voided.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","workOrderId":"00000000-0000-4000-8000-000000000000","templateId":"00000000-0000-4000-8000-000000000000","templateName":"string","templateSchemaVersion":1,"status":"string","pdfStatus":"string","pdfMediaId":null,"voided":true,"submittedAt":null,"updatedAt":null}}}},"400":{"description":"A reason is required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Submission not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stale version, or already voided","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/forms_reports/submissions/:id/void\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"reason\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}},"/qc/issues":{"get":{"operationId":"qc_get_qc_issues","summary":"List quality issues","description":"Returns a paginated collection of quality issues in the current tenant and organization scope.","tags":["Quality control"],"parameters":[{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters1Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"workOrderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"kind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters3Schema"},"example":"ncr"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters4Schema"},"example":"string"},{"name":"severity","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters5Schema"},"example":"low"},{"name":"ownerUserId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"unassigned","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters7Schema"},"example":true},{"name":"reportedByUserId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters8Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"overdue","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters9Schema"},"example":true},{"name":"includeVoided","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters10Schema"},"example":true},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters11Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters12Schema"},"example":"number"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters13Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters14Schema"},"example":1},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetParameters15Schema"},"example":"asc"}],"responses":{"200":{"description":"Paginated quality issues","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","number":"string","workOrderId":"00000000-0000-4000-8000-000000000000","kind":"string","title":"string","description":null,"status":"string","severity":"string","reportedByUserId":null,"reportedAt":null,"ownerUserId":null,"dueAt":null,"resolutionNote":null,"resolvedAt":null,"closedAt":null,"voided":true,"voidReason":null,"createdAt":null,"updatedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/qc/issues?sortField=reported_at&page=1&pageSize=50&sortDir=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"qc_post_qc_issues","summary":"Create quality issue","description":"Reports a non-conformity or a production problem against a work order. The work order must exist in scope and must not be a draft — `done` and `cancelled` are accepted on purpose. Photos are media ids uploaded through `POST /api/media/upload` beforehand.","tags":["Quality control"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchema"},"example":{"workOrderId":"00000000-0000-4000-8000-000000000000","kind":"ncr","title":"string","description":null}}},"description":"Reports a non-conformity or a production problem against a work order. The work order must exist in scope and must not be a draft — `done` and `cancelled` are accepted on purpose. Photos are media ids uploaded through `POST /api/media/upload` beforehand."},"responses":{"201":{"description":"Quality Issue created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","number":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/qc/issues\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"workOrderId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"kind\\\": \\\"ncr\\\",\n  \\\"title\\\": \\\"string\\\",\n  \\\"description\\\": null\n}\""}],"x-require-auth":true}},"/qc/settings":{"get":{"operationId":"qc_get_qc_settings","summary":"Resolve the tr3.qc feature flag","description":"Returns whether quality control is enabled for the caller tenant, whether forms and reports are enabled, and whether QC checklists are available — which requires both.","tags":["Quality control"],"parameters":[],"responses":{"200":{"description":"Resolved settings.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcSettingsGetResponses200ContentApplicationJsonSchema"},"example":{"enabled":true,"formsReportsEnabled":true,"checklistsEnabled":true}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcSettingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcSettingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Unexpected server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcSettingsGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/qc/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/qc/issues/{id}":{"get":{"operationId":"qc_get_qc_issues_id","summary":"Read one quality issue","description":"Returns the issue, including a voided one so its reason stays inspectable.","tags":["Quality control"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetParameters0Schema"}}],"responses":{"200":{"description":"The issue.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","number":"string","workOrderId":"00000000-0000-4000-8000-000000000000","kind":"string","title":"string","description":null,"status":"string","severity":"string","reportedByUserId":null,"reportedAt":null,"ownerUserId":null,"dueAt":null,"resolutionNote":null,"resolvedAt":null,"closedAt":null,"voided":true,"voidReason":null,"createdAt":null,"updatedAt":null}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Issue not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://server.tail3470ec.ts.net/api/qc/issues/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"put":{"operationId":"qc_put_qc_issues_id","summary":"Triage a quality issue","description":"Sets kind, severity, owner and due date and corrects the text in one write. `kind` stays changeable until the issue is closed. Send the record `updatedAt` as the optimistic-lock header.","tags":["Quality control"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchema"},"example":{"ownerUserId":null,"dueAt":null,"description":null}}}},"responses":{"200":{"description":"Issue triaged.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","number":"string","workOrderId":"00000000-0000-4000-8000-000000000000","kind":"string","status":"string","severity":"string","ownerUserId":null,"dueAt":null,"voided":true,"updatedAt":null}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Quality control is disabled for this tenant","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Issue not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stale version, issue closed, or issue voided","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://server.tail3470ec.ts.net/api/qc/issues/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"ownerUserId\\\": null,\n  \\\"dueAt\\\": null,\n  \\\"description\\\": null\n}\""}],"x-require-auth":true}},"/qc/issues/{id}/status":{"post":{"operationId":"qc_post_qc_issues_id_status","summary":"Move a quality issue through its lifecycle","description":"Moves an issue along open → in_progress → resolved → closed, including the office shortcut open → closed and the reopen closed → in_progress. Entering `resolved`, and the shortcut, require a resolution note. Send the record `updatedAt` as the optimistic-lock header.","tags":["Quality control"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostRequestBodyContentApplicationJsonSchema"},"example":{"status":"open","resolutionNote":null}}}},"responses":{"200":{"description":"Status applied.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","number":"string","workOrderId":"00000000-0000-4000-8000-000000000000","kind":"string","status":"string","severity":"string","ownerUserId":null,"dueAt":null,"voided":true,"updatedAt":null}}}},"400":{"description":"Missing owner or resolution note","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"The caller may not make this move, or QC is disabled","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Issue not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stale version, disallowed transition, unchanged status, or voided issue","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/qc/issues/:id/status\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"status\\\": \\\"open\\\",\n  \\\"resolutionNote\\\": null\n}\""}],"x-require-auth":true}},"/qc/issues/{id}/void":{"post":{"operationId":"qc_post_qc_issues_id_void","summary":"Withdraw a quality issue from the counters","description":"Marks the issue voided with a mandatory reason. The record and its photos survive — there is no delete. Send the record `updatedAt` as the optimistic-lock header.","tags":["Quality control"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostRequestBodyContentApplicationJsonSchema"},"example":{"reason":"string"}}}},"responses":{"200":{"description":"Issue voided.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","number":"string","workOrderId":"00000000-0000-4000-8000-000000000000","kind":"string","status":"string","severity":"string","ownerUserId":null,"dueAt":null,"voided":true,"updatedAt":null}}}},"400":{"description":"A reason is required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Authentication required","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Quality control is disabled for this tenant","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Issue not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Stale version, or already voided","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://server.tail3470ec.ts.net/api/qc/issues/:id/void\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"reason\\\": \\\"string\\\"\n}\""}],"x-require-auth":true}}},"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","enum":["en","pl","es","de","ko"]},"DocPathsAuthLocaleGetParameters1Schema":{"type":"string"},"DocPathsAuthLocaleGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAuthLocaleGetResponses302ContentApplicationJsonSchema":{"type":"object"},"DocPathsAuthLocaleGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthLocaleGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthLocaleGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAuthLocalePostRequestBodyContentApplicationJsonSchemaPropertiesLocale":{"type":"string","enum":["en","pl","es","de","ko"]},"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"},"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"}]},"DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesUserId"},"isSuperAdmin":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesIsSuperAdmin"},"features":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesFeatures"},"organizations":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutRequestBodyContentApplicationJsonSchemaPropertiesOrganizations"}},"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"},"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":"number"},"DocPathsAuthUsersGetParameters2Schema":{"type":"number"},"DocPathsAuthUsersGetParameters3Schema":{"type":"string"},"DocPathsAuthUsersGetParameters4Schema":{"type":"string"},"DocPathsAuthUsersGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsAuthUsersGetParameters6Schema":{"type":"boolean"},"DocPathsAuthUsersGetParameters7SchemaItems":{"type":"string","format":"uuid"},"DocPathsAuthUsersGetParameters7Schema":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters7SchemaItems"}},"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"},"DocPathsAuthAutologinGetResponses307ContentTextHtmlSchema":{"type":"object"},"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"},"DocPathsAuthLogoutPostResponses302ContentTextHtmlSchema":{"type":"object"},"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},"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"},"DocPathsAuthSessionRefreshGetResponses302ContentTextHtmlSchema":{"type":"object"},"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"},"DocPathsDirectoryTenantsLookupGetResponses200ContentApplicationJsonSchema":{"type":"object"},"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"},"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"}},"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"},"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"},"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"},"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"},"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"},"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"},"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"},"DocPathsNotificationsMarkAllReadPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsMarkAllReadPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsMarkAllReadPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsPreferencesGetResponses200ContentApplicationJsonSchema":{"type":"object"},"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"},"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"},"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"},"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"}},"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"},"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"},"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"},"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"},"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"},"DocPathsNotificationsUnreadCountGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsUnreadCountGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsUnreadCountGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsIdActionPostParameters0Schema":{"type":"string"},"DocPathsNotificationsIdActionPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsNotificationsIdActionPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsIdActionPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsIdActionPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsIdDismissPutParameters0Schema":{"type":"string"},"DocPathsNotificationsIdDismissPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsNotificationsIdDismissPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsIdDismissPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsIdDismissPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsIdReadPutParameters0Schema":{"type":"string"},"DocPathsNotificationsIdReadPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsNotificationsIdReadPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsNotificationsIdReadPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsNotificationsIdReadPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsNotificationsIdRestorePutParameters0Schema":{"type":"string"},"DocPathsNotificationsIdRestorePutResponses200ContentApplicationJsonSchema":{"type":"object"},"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"},"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"},"DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPortalBroadcast":{"type":"boolean"},"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"},"portalBroadcast":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchemaPropertiesDataItemsPropertiesPortalBroadcast"}},"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"},"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},"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},"DocPathsOpsCustomersGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsOpsCustomersGetParameters1Schema":{"type":"string"},"DocPathsOpsCustomersGetParameters2Schema":{"type":"string"},"DocPathsOpsCustomersGetParameters3Schema":{"type":"string","enum":["name","created_at","updated_at"]},"DocPathsOpsCustomersGetParameters4Schema":{"type":"number"},"DocPathsOpsCustomersGetParameters5Schema":{"type":"number"},"DocPathsOpsCustomersGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxIdAnyOf0":{"type":"null"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxIdAnyOf1":{"type":"string"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxIdAnyOf1"}]},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf0":{"type":"null"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf1":{"type":"string"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmailAnyOf1"}]},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhoneAnyOf0":{"type":"null"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhoneAnyOf1":{"type":"string"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhoneAnyOf1"}]},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"taxId":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxId"},"email":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEmail"},"phone":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPhone"},"updatedAt":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","taxId","email","phone","updatedAt"],"additionalProperties":false},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsOpsCustomersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsCustomersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsCustomersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsCustomersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsCustomersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesTaxIdAnyOf0":{"type":"null"},"DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesTaxIdAnyOf1":{"type":"string","maxLength":64},"DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesTaxId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesTaxIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesTaxIdAnyOf1"}]},"DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0":{"type":"null"},"DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1":{"type":"string","format":"email","maxLength":320},"DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1"}]},"DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf0":{"type":"null"},"DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf1":{"type":"string","maxLength":64},"DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf1"}]},"DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"taxId":{"$ref":"#/components/schemas/DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesTaxId"},"email":{"$ref":"#/components/schemas/DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesEmail"},"phone":{"$ref":"#/components/schemas/DocPathsOpsCustomersPostRequestBodyContentApplicationJsonSchemaPropertiesPhone"}},"required":["name"],"additionalProperties":false},"DocPathsOpsCustomersPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsCustomersPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsCustomersPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsOpsCustomersPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsCustomersPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsCustomersPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsCustomersPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsCustomersPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsCustomersPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesTaxIdAnyOf0":{"type":"null"},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesTaxIdAnyOf1":{"type":"string","maxLength":64},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesTaxId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesTaxIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesTaxIdAnyOf1"}]},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0":{"type":"null"},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1":{"type":"string","format":"email","maxLength":320},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesEmailAnyOf1"}]},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf0":{"type":"null"},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf1":{"type":"string","maxLength":64},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesPhoneAnyOf1"}]},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"taxId":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesTaxId"},"email":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesEmail"},"phone":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesPhone"},"id":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsOpsCustomersPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsOpsCustomersPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsOpsCustomersPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsCustomersPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsCustomersPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsCustomersPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsCustomersPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsCustomersDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsCustomersDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsCustomersDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsOpsCustomersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsOpsCustomersDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsOpsCustomersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsOpsCustomersDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsCustomersDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsCustomersDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsCustomersDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsCustomersDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsCustomersDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsSitesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsOpsSitesGetParameters1Schema":{"type":"string"},"DocPathsOpsSitesGetParameters2Schema":{"type":"string"},"DocPathsOpsSitesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsOpsSitesGetParameters4Schema":{"type":"string","enum":["name","city","created_at","updated_at"]},"DocPathsOpsSitesGetParameters5Schema":{"type":"number"},"DocPathsOpsSitesGetParameters6Schema":{"type":"number"},"DocPathsOpsSitesGetParameters7Schema":{"type":"string","enum":["asc","desc"]},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf0":{"type":"null"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf1"}]},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLineAnyOf0":{"type":"null"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLineAnyOf1":{"type":"string"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLineAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLineAnyOf1"}]},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0":{"type":"null"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1":{"type":"string"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1"}]},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf0":{"type":"null"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf1":{"type":"string"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf1"}]},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"customerId":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId"},"addressLine":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine"},"city":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity"},"country":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountry"},"updatedAt":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","customerId","addressLine","city","country","updatedAt"],"additionalProperties":false},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsOpsSitesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsOpsSitesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsSitesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsSitesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsSitesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsSitesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0":{"type":"null"},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1"}]},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLineAnyOf0":{"type":"null"},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLineAnyOf1":{"type":"string","maxLength":300},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLineAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLineAnyOf1"}]},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0":{"type":"null"},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1":{"type":"string","maxLength":120},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1"}]},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf0":{"type":"null"},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf1":{"type":"string","maxLength":120},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf1"}]},"DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"customerId":{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"addressLine":{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine"},"city":{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCity"},"country":{"$ref":"#/components/schemas/DocPathsOpsSitesPostRequestBodyContentApplicationJsonSchemaPropertiesCountry"}},"required":["name"],"additionalProperties":false},"DocPathsOpsSitesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsSitesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsSitesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsOpsSitesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsSitesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsSitesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsSitesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsSitesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsSitesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0":{"type":"null"},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1"}]},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLineAnyOf0":{"type":"null"},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLineAnyOf1":{"type":"string","maxLength":300},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLineAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLineAnyOf1"}]},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0":{"type":"null"},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1":{"type":"string","maxLength":120},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCityAnyOf1"}]},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf0":{"type":"null"},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf1":{"type":"string","maxLength":120},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCountryAnyOf1"}]},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"customerId":{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"addressLine":{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine"},"city":{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCity"},"country":{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesCountry"},"id":{"$ref":"#/components/schemas/DocPathsOpsSitesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsOpsSitesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsOpsSitesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsOpsSitesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsOpsSitesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsSitesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsSitesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsSitesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsSitesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsSitesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsSitesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsSitesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsSitesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsOpsSitesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsOpsSitesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsOpsSitesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsOpsSitesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsSitesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsSitesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsSitesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsSitesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsSitesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsOpsUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsOpsUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsOpsUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsOpsUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"}},"required":["value","label"],"additionalProperties":false},"DocPathsOpsUsersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsOpsUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsOpsUsersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsOpsUsersGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsOpsUsersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsUsersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsUsersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsUsersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsUsersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsUsersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsUsersGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsUsersGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsUsersGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber":{"type":"string"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority":{"type":"string"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerNameAnyOf1"}]},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteNameAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteNameAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteNameAnyOf1"}]},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStartAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStartAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStart":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStartAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStartAnyOf1"}]},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignedToMe":{"type":"boolean"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartable":{"type":"boolean"},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber"},"title":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"status":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"priority":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority"},"customerName":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerName"},"siteName":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteName"},"scheduledStart":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStart"},"assignedToMe":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignedToMe"},"startable":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartable"}},"required":["id","number","title","status","priority","customerName","siteName","scheduledStart","assignedToMe","startable"],"additionalProperties":false},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsOpsWorkOrdersAssignedGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersAssignedGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersAssignedGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersAssignedGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersAssignedGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersAssignedGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersAssignedGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersAssignedGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersAssignedGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesNumber":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTitle":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStatus":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPriority":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomerNameAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomerNameAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomerName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomerNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomerNameAnyOf1"}]},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSiteNameAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSiteNameAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSiteName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSiteNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSiteNameAnyOf1"}]},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesScheduledStartAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesScheduledStartAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesScheduledStart":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesScheduledStartAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesScheduledStartAnyOf1"}]},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignedToMe":{"type":"boolean"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStartable":{"type":"boolean"},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesNumber"},"title":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTitle"},"status":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStatus"},"priority":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPriority"},"customerName":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomerName"},"siteName":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesSiteName"},"scheduledStart":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesScheduledStart"},"assignedToMe":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignedToMe"},"startable":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStartable"}},"required":["id","number","title","status","priority","customerName","siteName","scheduledStart","assignedToMe","startable"],"additionalProperties":false},"DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsOpsWorkOrdersByNumberGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersByNumberGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersByNumberGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersByNumberGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersByNumberGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersByNumberGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersByNumberGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersGetParameters1Schema":{"type":"string"},"DocPathsOpsWorkOrdersGetParameters2Schema":{"type":"string"},"DocPathsOpsWorkOrdersGetParameters3Schema":{"type":"string"},"DocPathsOpsWorkOrdersGetParameters4Schema":{"type":"string","enum":["normal","high"]},"DocPathsOpsWorkOrdersGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersGetParameters7Schema":{"type":"string","enum":["number","title","status","priority","scheduled_start","created_at","updated_at"]},"DocPathsOpsWorkOrdersGetParameters8Schema":{"type":"number"},"DocPathsOpsWorkOrdersGetParameters9Schema":{"type":"number"},"DocPathsOpsWorkOrdersGetParameters10Schema":{"type":"string","enum":["asc","desc"]},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf1"}]},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteIdAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteIdAnyOf1"}]},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStartAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStartAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStart":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStartAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStartAnyOf1"}]},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledEndAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledEndAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledEnd":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledEndAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledEndAnyOf1"}]},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAtAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAtAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAtAnyOf1"}]},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber"},"title":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"customerId":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId"},"siteId":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSiteId"},"status":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"priority":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority"},"scheduledStart":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledStart"},"scheduledEnd":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduledEnd"},"closedAt":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAt"},"createdAt":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","number","title","description","customerId","siteId","status","priority","scheduledStart","scheduledEnd","closedAt","createdAt","updatedAt"],"additionalProperties":false},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsOpsWorkOrdersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":200},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":5000},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1"}]},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSiteIdAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSiteId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSiteIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1"}]},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["draft","open","in_progress","done","cancelled"]},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"open"},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPriorityAllOf0":{"type":"string","enum":["normal","high"]},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPriority":{"allOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPriorityAllOf0"}],"default":"normal"},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesScheduledStartAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesScheduledStartAnyOf1":{"type":"string","format":"datetime"},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesScheduledStart":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesScheduledStartAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesScheduledStartAnyOf1"}]},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesScheduledEndAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesScheduledEnd":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesScheduledEndAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesScheduledStartAnyOf1"}]},"DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"title":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"customerId":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"siteId":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesSiteId"},"status":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"priority":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesPriority"},"scheduledStart":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesScheduledStart"},"scheduledEnd":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostRequestBodyContentApplicationJsonSchemaPropertiesScheduledEnd"}},"required":["title"],"additionalProperties":false},"DocPathsOpsWorkOrdersPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsOpsWorkOrdersPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":200},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":5000},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1"}]},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesSiteIdAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesSiteId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesSiteIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerIdAnyOf1"}]},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesPriority":{"type":"string","enum":["normal","high"]},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesScheduledStartAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesScheduledStartAnyOf1":{"type":"string","format":"datetime"},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesScheduledStart":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesScheduledStartAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesScheduledStartAnyOf1"}]},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesScheduledEndAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesScheduledEnd":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesScheduledEndAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesScheduledStartAnyOf1"}]},"DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"customerId":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"siteId":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesSiteId"},"priority":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesPriority"},"scheduledStart":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesScheduledStart"},"scheduledEnd":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutRequestBodyContentApplicationJsonSchemaPropertiesScheduledEnd"}},"required":["id"],"additionalProperties":false},"DocPathsOpsWorkOrdersPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsOpsWorkOrdersPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsOpsWorkOrdersPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsOpsWorkOrdersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsOpsWorkOrdersDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsOpsWorkOrdersDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersIdAssigneesGetParameters0Schema":{"type":"string"},"DocPathsOpsWorkOrdersIdAssigneesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersIdAssigneesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId"}},"required":["userId"],"additionalProperties":false},"DocPathsOpsWorkOrdersIdAssigneesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsOpsWorkOrdersIdAssigneesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsOpsWorkOrdersIdAssigneesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdAssigneesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersIdAssigneesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdAssigneesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersIdAssigneesGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdAssigneesGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersIdAssigneesPutParameters0Schema":{"type":"string"},"DocPathsOpsWorkOrdersIdAssigneesPutRequestBodyContentApplicationJsonSchemaPropertiesUserIdsItems":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersIdAssigneesPutRequestBodyContentApplicationJsonSchemaPropertiesUserIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutRequestBodyContentApplicationJsonSchemaPropertiesUserIdsItems"},"maxItems":50},"DocPathsOpsWorkOrdersIdAssigneesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"userIds":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutRequestBodyContentApplicationJsonSchemaPropertiesUserIds"}},"required":["userIds"],"additionalProperties":false},"DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesUserIdsItems":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesUserIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesUserIdsItems"}},"DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesId"},"userIds":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesUserIds"},"updatedAt":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","userIds","updatedAt"],"additionalProperties":false},"DocPathsOpsWorkOrdersIdAssigneesPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdAssigneesPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersIdAssigneesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdAssigneesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersIdAssigneesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdAssigneesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersIdAssigneesPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdAssigneesPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersIdAssigneesPutResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdAssigneesPutResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdAssigneesPutResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersIdStatusPostParameters0Schema":{"type":"string"},"DocPathsOpsWorkOrdersIdStatusPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["draft","open","in_progress","done","cancelled"]},"DocPathsOpsWorkOrdersIdStatusPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"}},"required":["status"],"additionalProperties":false},"DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesPreviousStatus":{"type":"string"},"DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesId"},"status":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesStatus"},"previousStatus":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesPreviousStatus"},"updatedAt":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","status","previousStatus","updatedAt"],"additionalProperties":false},"DocPathsOpsWorkOrdersIdStatusPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdStatusPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersIdStatusPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdStatusPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersIdStatusPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdStatusPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsOpsWorkOrdersIdStatusPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdStatusPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsOpsWorkOrdersIdStatusPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsOpsWorkOrdersIdStatusPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsOpsWorkOrdersIdStatusPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeOperationsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsTimeOperationsGetParameters1Schema":{"type":"string"},"DocPathsTimeOperationsGetParameters2Schema":{"type":"string"},"DocPathsTimeOperationsGetParameters3Schema":{"type":"string","enum":["name","created_at","updated_at"]},"DocPathsTimeOperationsGetParameters4Schema":{"type":"number"},"DocPathsTimeOperationsGetParameters5Schema":{"type":"number"},"DocPathsTimeOperationsGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"updatedAt":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","updatedAt"],"additionalProperties":false},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsTimeOperationsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeOperationsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeOperationsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeOperationsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeOperationsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeOperationsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsTimeOperationsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsTimeOperationsPostRequestBodyContentApplicationJsonSchemaPropertiesName"}},"required":["name"],"additionalProperties":false},"DocPathsTimeOperationsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTimeOperationsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTimeOperationsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsTimeOperationsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeOperationsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeOperationsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeOperationsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeOperationsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeOperationsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeOperationsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsTimeOperationsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTimeOperationsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsTimeOperationsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"id":{"$ref":"#/components/schemas/DocPathsTimeOperationsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsTimeOperationsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsTimeOperationsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsTimeOperationsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsTimeOperationsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeOperationsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeOperationsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeOperationsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeOperationsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeOperationsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeOperationsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTimeOperationsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTimeOperationsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsTimeOperationsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsTimeOperationsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsTimeOperationsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsTimeOperationsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeOperationsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeOperationsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeOperationsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeOperationsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeOperationsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeSessionsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsTimeSessionsGetParameters1Schema":{"type":"string"},"DocPathsTimeSessionsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsTimeSessionsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsTimeSessionsGetParameters4Schema":{"type":"string"},"DocPathsTimeSessionsGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsTimeSessionsGetParameters6Schema":{"type":"string","enum":["started_at","ended_at","status","created_at","updated_at"]},"DocPathsTimeSessionsGetParameters7Schema":{"type":"number"},"DocPathsTimeSessionsGetParameters8Schema":{"type":"number"},"DocPathsTimeSessionsGetParameters9Schema":{"type":"string","enum":["asc","desc"]},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAtAnyOf0":{"type":"null"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAtAnyOf1":{"type":"string"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAtAnyOf1"}]},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndedAtAnyOf0":{"type":"null"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndedAtAnyOf1":{"type":"string"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndedAtAnyOf1"}]},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPauseStartedAtAnyOf0":{"type":"null"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPauseStartedAtAnyOf1":{"type":"string"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPauseStartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPauseStartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPauseStartedAtAnyOf1"}]},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveSinceAnyOf0":{"type":"null"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveSinceAnyOf1":{"type":"string"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveSince":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveSinceAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveSinceAnyOf1"}]},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationWorkedSeconds":{"type":"number"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0":{"type":"null"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1":{"type":"string"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNoteAnyOf1"}]},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOperationIdAnyOf0":{"type":"null"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOperationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOperationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOperationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOperationIdAnyOf1"}]},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoided":{"type":"boolean"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf0":{"type":"null"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf1":{"type":"string"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf1"}]},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"workOrderId":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWorkOrderId"},"userId":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId"},"status":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"startedAt":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAt"},"endedAt":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEndedAt"},"pauseStartedAt":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPauseStartedAt"},"activeSince":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActiveSince"},"durationWorkedSeconds":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationWorkedSeconds"},"note":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNote"},"operationId":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOperationId"},"voided":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoided"},"voidReason":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReason"},"createdAt":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","workOrderId","userId","status","startedAt","endedAt","pauseStartedAt","activeSince","durationWorkedSeconds","note","operationId","voided","voidReason","createdAt","updatedAt"],"additionalProperties":false},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsTimeSessionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeSessionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchemaPropertiesOperationId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":1000},"DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"workOrderId":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchemaPropertiesWorkOrderId"},"operationId":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchemaPropertiesOperationId"},"note":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostRequestBodyContentApplicationJsonSchemaPropertiesNote"}},"required":["workOrderId","operationId"],"additionalProperties":false},"DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesPreviousStatus":{"type":"string"},"DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesDurationWorkedSeconds":{"type":"number"},"DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesId"},"workOrderId":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesWorkOrderId"},"status":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesStatus"},"previousStatus":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesPreviousStatus"},"durationWorkedSeconds":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesDurationWorkedSeconds"},"updatedAt":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","workOrderId","status","previousStatus","durationWorkedSeconds","updatedAt"],"additionalProperties":false},"DocPathsTimeSessionsStartPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsStartPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsStartPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsStartPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsStartPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsStartPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsStartPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsStartPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsStartPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSettingsGetResponses200ContentApplicationJsonSchemaPropertiesEnabled":{"type":"boolean"},"DocPathsTimeSettingsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsTimeSettingsGetResponses200ContentApplicationJsonSchemaPropertiesEnabled"}},"required":["enabled"],"additionalProperties":false},"DocPathsTimeSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSettingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSettingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeSettingsGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSettingsGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSettingsGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdPausePostParameters0Schema":{"type":"string"},"DocPathsTimeSessionsIdPausePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{},"additionalProperties":false},"DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesPreviousStatus":{"type":"string"},"DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesDurationWorkedSeconds":{"type":"number"},"DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesId"},"workOrderId":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId"},"status":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesStatus"},"previousStatus":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesPreviousStatus"},"durationWorkedSeconds":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesDurationWorkedSeconds"},"updatedAt":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","workOrderId","status","previousStatus","durationWorkedSeconds","updatedAt"],"additionalProperties":false},"DocPathsTimeSessionsIdPausePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdPausePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdPausePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdPausePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdPausePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdPausePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdPausePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdPausePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdPausePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdPausePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdPausePostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdResumePostParameters0Schema":{"type":"string"},"DocPathsTimeSessionsIdResumePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{},"additionalProperties":false},"DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesPreviousStatus":{"type":"string"},"DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesDurationWorkedSeconds":{"type":"number"},"DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesId"},"workOrderId":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId"},"status":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesStatus"},"previousStatus":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesPreviousStatus"},"durationWorkedSeconds":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesDurationWorkedSeconds"},"updatedAt":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","workOrderId","status","previousStatus","durationWorkedSeconds","updatedAt"],"additionalProperties":false},"DocPathsTimeSessionsIdResumePostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdResumePostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdResumePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdResumePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdResumePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdResumePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdResumePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdResumePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdResumePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdResumePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdResumePostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdStopPostParameters0Schema":{"type":"string"},"DocPathsTimeSessionsIdStopPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsTimeSessionsIdStopPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":1000},"DocPathsTimeSessionsIdStopPostRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsTimeSessionsIdStopPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"note":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostRequestBodyContentApplicationJsonSchemaPropertiesNote"}},"additionalProperties":false},"DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesPreviousStatus":{"type":"string"},"DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesDurationWorkedSeconds":{"type":"number"},"DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesId"},"workOrderId":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId"},"status":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesStatus"},"previousStatus":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesPreviousStatus"},"durationWorkedSeconds":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesDurationWorkedSeconds"},"updatedAt":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","workOrderId","status","previousStatus","durationWorkedSeconds","updatedAt"],"additionalProperties":false},"DocPathsTimeSessionsIdStopPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdStopPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdStopPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdStopPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdStopPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdStopPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdStopPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdStopPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdStopPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdStopPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdStopPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdVoidPostParameters0Schema":{"type":"string"},"DocPathsTimeSessionsIdVoidPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","minLength":1,"maxLength":500},"DocPathsTimeSessionsIdVoidPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"reason":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostRequestBodyContentApplicationJsonSchemaPropertiesReason"}},"required":["reason"],"additionalProperties":false},"DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesPreviousStatus":{"type":"string"},"DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesDurationWorkedSeconds":{"type":"number"},"DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesId"},"workOrderId":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId"},"status":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesStatus"},"previousStatus":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesPreviousStatus"},"durationWorkedSeconds":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesDurationWorkedSeconds"},"updatedAt":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","workOrderId","status","previousStatus","durationWorkedSeconds","updatedAt"],"additionalProperties":false},"DocPathsTimeSessionsIdVoidPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdVoidPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdVoidPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdVoidPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdVoidPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdVoidPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTimeSessionsIdVoidPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdVoidPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsTimeSessionsIdVoidPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTimeSessionsIdVoidPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTimeSessionsIdVoidPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskBindPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":32},"DocPathsWorkforceKioskBindPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostRequestBodyContentApplicationJsonSchemaPropertiesCode"}},"required":["code"],"additionalProperties":false},"DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchemaPropertiesDeviceLabelAnyOf0":{"type":"null"},"DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchemaPropertiesDeviceLabelAnyOf1":{"type":"string"},"DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchemaPropertiesDeviceLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchemaPropertiesDeviceLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchemaPropertiesDeviceLabelAnyOf1"}]},"DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchemaPropertiesTenantName":{"type":"string"},"DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"deviceLabel":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchemaPropertiesDeviceLabel"},"tenantName":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses200ContentApplicationJsonSchemaPropertiesTenantName"}},"required":["ok","deviceLabel","tenantName"],"additionalProperties":false},"DocPathsWorkforceKioskBindPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskBindPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchemaOneOf0PropertiesError":{"type":"string","enum":["workforce.errors.kiosk_locked"]},"DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchemaOneOf0PropertiesRetryAfter":{"type":"number"},"DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchemaOneOf0":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchemaOneOf0PropertiesError"},"retryAfter":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchemaOneOf0PropertiesRetryAfter"}},"required":["error","retryAfter"],"additionalProperties":false},"DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchemaOneOf1PropertiesError":{"type":"string"},"DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchemaOneOf1":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchemaOneOf1PropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses429ContentApplicationJsonSchemaOneOf1"}]},"DocPathsWorkforceKioskBindPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskBindPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskBindPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBoundAtAnyOf0":{"type":"null"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBoundAtAnyOf1":{"type":"string"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBoundAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBoundAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBoundAtAnyOf1"}]},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastSeenAtAnyOf0":{"type":"null"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastSeenAtAnyOf1":{"type":"string"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastSeenAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastSeenAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastSeenAtAnyOf1"}]},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLockedUntilAnyOf0":{"type":"null"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLockedUntilAnyOf1":{"type":"string"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLockedUntil":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLockedUntilAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLockedUntilAnyOf1"}]},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRevokedAtAnyOf0":{"type":"null"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRevokedAtAnyOf1":{"type":"string"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRevokedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRevokedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRevokedAtAnyOf1"}]},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["active","locked","revoked"]},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"boundAt":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBoundAt"},"lastSeenAt":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastSeenAt"},"lockedUntil":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLockedUntil"},"revokedAt":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRevokedAt"},"status":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","label","boundAt","lastSeenAt","lockedUntil","revokedAt","status"],"additionalProperties":false},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsWorkforceKioskDevicesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskDevicesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskDevicesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskDevicesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceKioskDevicesGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskDevicesGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesBound":{"type":"boolean","enum":[false]},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf0":{"type":"object","properties":{"bound":{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesBound"}},"required":["bound"],"additionalProperties":false},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesBound":{"type":"boolean","enum":[true]},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesDeviceLabelAnyOf0":{"type":"null"},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesDeviceLabelAnyOf1":{"type":"string"},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesDeviceLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesDeviceLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesDeviceLabelAnyOf1"}]},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesTenantName":{"type":"string"},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesLockedUntilAnyOf0":{"type":"null"},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesLockedUntilAnyOf1":{"type":"string"},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesLockedUntil":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesLockedUntilAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesLockedUntilAnyOf1"}]},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1":{"type":"object","properties":{"bound":{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesBound"},"deviceLabel":{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesDeviceLabel"},"tenantName":{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesTenantName"},"lockedUntil":{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesLockedUntil"}},"required":["bound","deviceLabel","tenantName","lockedUntil"],"additionalProperties":false},"DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses200ContentApplicationJsonSchemaOneOf1"}]},"DocPathsWorkforceKioskStatusGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskStatusGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskStatusGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskUnbindPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWorkforceKioskUnbindPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnbindPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWorkforceKioskUnbindPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnbindPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnbindPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskUnbindPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnbindPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnbindPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAt":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"expiresAt":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAt"},"createdAt":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"}},"required":["id","label","expiresAt","createdAt"],"additionalProperties":false},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsWorkforceKioskUnlockCodesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskUnlockCodesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceKioskUnlockCodesGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskUnlockCodesPostRequestBodyContentApplicationJsonSchemaPropertiesLabelAnyOf0":{"type":"null"},"DocPathsWorkforceKioskUnlockCodesPostRequestBodyContentApplicationJsonSchemaPropertiesLabelAnyOf1":{"type":"string","maxLength":120},"DocPathsWorkforceKioskUnlockCodesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostRequestBodyContentApplicationJsonSchemaPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostRequestBodyContentApplicationJsonSchemaPropertiesLabelAnyOf1"}]},"DocPathsWorkforceKioskUnlockCodesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"label":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"}},"additionalProperties":false},"DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesLabelAnyOf0":{"type":"null"},"DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesLabelAnyOf1":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesLabelAnyOf1"}]},"DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesExpiresAt":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1"}]},"DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesLabel"},"expiresAt":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesExpiresAt"},"createdAt":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt"},"code":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses201ContentApplicationJsonSchemaPropertiesCode"}},"required":["id","label","expiresAt","createdAt","code"],"additionalProperties":false},"DocPathsWorkforceKioskUnlockCodesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskUnlockCodesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskUnlockCodesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceKioskUnlockCodesPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceOperatorLoginPostRequestBodyContentApplicationJsonSchemaPropertiesPin":{"type":"string","minLength":1,"maxLength":32},"DocPathsWorkforceOperatorLoginPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"pin":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostRequestBodyContentApplicationJsonSchemaPropertiesPin"}},"required":["pin"],"additionalProperties":false},"DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchemaPropertiesRedirect":{"type":"string"},"DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchemaPropertiesOperatorPropertiesId":{"type":"string","format":"uuid"},"DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchemaPropertiesOperatorPropertiesName":{"type":"string"},"DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchemaPropertiesOperator":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchemaPropertiesOperatorPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchemaPropertiesOperatorPropertiesName"}},"required":["id","name"],"additionalProperties":false},"DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"redirect":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchemaPropertiesRedirect"},"operator":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses200ContentApplicationJsonSchemaPropertiesOperator"}},"required":["ok","redirect","operator"],"additionalProperties":false},"DocPathsWorkforceOperatorLoginPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorLoginPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceOperatorLoginPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorLoginPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchemaOneOf0PropertiesError":{"type":"string","enum":["workforce.errors.kiosk_locked"]},"DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchemaOneOf0PropertiesRetryAfter":{"type":"number"},"DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchemaOneOf0":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchemaOneOf0PropertiesError"},"retryAfter":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchemaOneOf0PropertiesRetryAfter"}},"required":["error","retryAfter"],"additionalProperties":false},"DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchemaOneOf1PropertiesError":{"type":"string"},"DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchemaOneOf1":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchemaOneOf1PropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses429ContentApplicationJsonSchemaOneOf1"}]},"DocPathsWorkforceOperatorLoginPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorLoginPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLoginPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceOperatorLogoutPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWorkforceOperatorLogoutPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorLogoutPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesOperatorIdAnyOf0":{"type":"null"},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesOperatorIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesOperatorId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesOperatorIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesOperatorIdAnyOf1"}]},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesCodeAnyOf0":{"type":"null"},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesCodeAnyOf1":{"type":"string"},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesCodeAnyOf1"}]},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesDeviceLabelAnyOf0":{"type":"null"},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesDeviceLabelAnyOf1":{"type":"string"},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesDeviceLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesDeviceLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesDeviceLabelAnyOf1"}]},"DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"operatorId":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesOperatorId"},"userId":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesUserId"},"name":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesName"},"code":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesCode"},"deviceLabel":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses200ContentApplicationJsonSchemaPropertiesDeviceLabel"}},"required":["operatorId","userId","name","code","deviceLabel"],"additionalProperties":false},"DocPathsWorkforceOperatorMeGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorMeGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceOperatorMeGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorMeGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceOperatorMeGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorMeGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorMeGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceOperatorsGetParameters0Schema":{"type":"number"},"DocPathsWorkforceOperatorsGetParameters1Schema":{"type":"number"},"DocPathsWorkforceOperatorsGetParameters2Schema":{"type":"string","enum":["asc","desc"]},"DocPathsWorkforceOperatorsGetParameters3Schema":{"type":"string","enum":["name","code","created_at","updated_at"]},"DocPathsWorkforceOperatorsGetParameters4Schema":{"type":"string","maxLength":200},"DocPathsWorkforceOperatorsGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsWorkforceOperatorsGetParameters6Schema":{"type":"string"},"DocPathsWorkforceOperatorsGetParameters7Schema":{"type":"string","enum":["true","false"]},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0":{"type":"null"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1":{"type":"string"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCodeAnyOf1"}]},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActive":{"type":"boolean"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastLoginAtAnyOf0":{"type":"null"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastLoginAtAnyOf1":{"type":"string"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastLoginAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastLoginAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastLoginAtAnyOf1"}]},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"userId":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUserId"},"code":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"active":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActive"},"lastLoginAt":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastLoginAt"},"createdAt":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","userId","code","name","active","lastLoginAt","createdAt","updatedAt"],"additionalProperties":false},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsWorkforceOperatorsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceOperatorsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesPin":{"type":"string","pattern":"^[0-9]{4,8}$"},"DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesActive":{"type":"boolean"},"DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesUserIdAnyOf0":{"type":"null"},"DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesUserIdAnyOf1"}]},"DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"pin":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesPin"},"active":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesActive"},"userId":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostRequestBodyContentApplicationJsonSchemaPropertiesUserId"}},"required":["name","pin"],"additionalProperties":false},"DocPathsWorkforceOperatorsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWorkforceOperatorsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsWorkforceOperatorsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceOperatorsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchemaPropertiesPin":{"type":"string","pattern":"^[0-9]{4,8}$"},"DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchemaPropertiesActive":{"type":"boolean"},"DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchemaPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"pin":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchemaPropertiesPin"},"active":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchemaPropertiesActive"},"userId":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutRequestBodyContentApplicationJsonSchemaPropertiesUserId"}},"required":["id"],"additionalProperties":false},"DocPathsWorkforceOperatorsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWorkforceOperatorsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWorkforceOperatorsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceOperatorsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceOperatorsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsWorkforceOperatorsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsWorkforceOperatorsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWorkforceOperatorsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWorkforceOperatorsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceOperatorsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceOperatorsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceOperatorsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses200ContentApplicationJsonSchemaPropertiesWorkOrderEntryMode":{"type":"string","enum":["list","type","scan"]},"DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"workOrderEntryMode":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses200ContentApplicationJsonSchemaPropertiesWorkOrderEntryMode"}},"required":["workOrderEntryMode"],"additionalProperties":false},"DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModeGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceSettingsWorkOrderEntryModePutRequestBodyContentApplicationJsonSchemaPropertiesWorkOrderEntryMode":{"type":"string","enum":["list","type","scan"]},"DocPathsWorkforceSettingsWorkOrderEntryModePutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"workOrderEntryMode":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModePutRequestBodyContentApplicationJsonSchemaPropertiesWorkOrderEntryMode"}},"required":["workOrderEntryMode"],"additionalProperties":false},"DocPathsWorkforceSettingsWorkOrderEntryModePutResponses200ContentApplicationJsonSchemaPropertiesWorkOrderEntryMode":{"type":"string","enum":["list","type","scan"]},"DocPathsWorkforceSettingsWorkOrderEntryModePutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"workOrderEntryMode":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModePutResponses200ContentApplicationJsonSchemaPropertiesWorkOrderEntryMode"}},"required":["workOrderEntryMode"],"additionalProperties":false},"DocPathsWorkforceSettingsWorkOrderEntryModePutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceSettingsWorkOrderEntryModePutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModePutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceSettingsWorkOrderEntryModePutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceSettingsWorkOrderEntryModePutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModePutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceSettingsWorkOrderEntryModePutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceSettingsWorkOrderEntryModePutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceSettingsWorkOrderEntryModePutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskDevicesIdDeleteParameters0Schema":{"type":"string"},"DocPathsWorkforceKioskDevicesIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWorkforceKioskDevicesIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWorkforceKioskDevicesIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskDevicesIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskDevicesIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskDevicesIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceKioskDevicesIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskDevicesIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskDevicesIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskDevicesIdDeleteResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskDevicesIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskUnlockCodesIdDeleteParameters0Schema":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsWorkforceKioskUnlockCodesIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsWorkforceKioskUnlockCodesIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskUnlockCodesIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsWorkforceKioskUnlockCodesIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsWorkforceKioskUnlockCodesIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsWorkforceKioskUnlockCodesIdDeleteResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsWorkforceKioskUnlockCodesIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesRefModule":{"type":"string","minLength":1,"maxLength":64,"pattern":"^[a-z0-9_]+$"},"DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesRefId":{"type":"string","format":"uuid"},"DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesMediaId":{"type":"string","format":"uuid"},"DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesRoleAnyOf0":{"type":"null"},"DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesRole":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesRoleAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesRefModule"}]},"DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"refModule":{"$ref":"#/components/schemas/DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesRefModule"},"refType":{"$ref":"#/components/schemas/DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesRefModule"},"refId":{"$ref":"#/components/schemas/DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesRefId"},"mediaId":{"$ref":"#/components/schemas/DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesMediaId"},"role":{"$ref":"#/components/schemas/DocPathsMediaLinksPostRequestBodyContentApplicationJsonSchemaPropertiesRole"}},"required":["refModule","refType","refId","mediaId"],"additionalProperties":false},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesMediaId":{"type":"string","format":"uuid"},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRefModule":{"type":"string"},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRefType":{"type":"string"},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRefId":{"type":"string","format":"uuid"},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRoleAnyOf0":{"type":"null"},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRoleAnyOf1":{"type":"string"},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRole":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRoleAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRoleAnyOf1"}]},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1"}]},"DocPathsMediaLinksPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesId"},"mediaId":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesMediaId"},"refModule":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRefModule"},"refType":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRefType"},"refId":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRefId"},"role":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesRole"},"createdAt":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt"}},"required":["id","mediaId","refModule","refType","refId","role","createdAt"],"additionalProperties":false},"DocPathsMediaLinksPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaLinksPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaLinksPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaLinksPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaLinksPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaLinksPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaLinksPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaLinksPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaLinksPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaLinksPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaLinksPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsMediaGetParameters1Schema":{"type":"string"},"DocPathsMediaGetParameters2Schema":{"type":"string","minLength":1,"maxLength":64,"pattern":"^[a-z0-9_]+$"},"DocPathsMediaGetParameters3Schema":{"type":"string","minLength":1,"maxLength":64,"pattern":"^[a-z0-9_]+$"},"DocPathsMediaGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsMediaGetParameters5Schema":{"type":"string","maxLength":4000},"DocPathsMediaGetParameters6Schema":{"type":"string","enum":["image","file","signature_png","pdf"]},"DocPathsMediaGetParameters7Schema":{"type":"string","minLength":1,"maxLength":64,"pattern":"^[a-z0-9_]+$"},"DocPathsMediaGetParameters8Schema":{"type":"boolean"},"DocPathsMediaGetParameters9Schema":{"type":"number"},"DocPathsMediaGetParameters10Schema":{"type":"number"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFilename":{"type":"string"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentType":{"type":"string"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesByteSize":{"type":"number"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecksumAnyOf0":{"type":"null"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecksumAnyOf1":{"type":"string"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecksum":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecksumAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecksumAnyOf1"}]},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedByUserIdAnyOf0":{"type":"null"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedByUserIdAnyOf1"}]},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoided":{"type":"boolean"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRefModule":{"type":"string"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRefType":{"type":"string"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRefId":{"type":"string","format":"uuid"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRoleAnyOf0":{"type":"null"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRoleAnyOf1":{"type":"string"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRole":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRoleAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRoleAnyOf1"}]},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItems":{"type":"object","properties":{"refModule":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRefModule"},"refType":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRefType"},"refId":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRefId"},"role":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItemsPropertiesRole"}},"required":["refModule","refType","refId","role"],"additionalProperties":false},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinks":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinksItems"}},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentUrl":{"type":"string"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"kind":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"filename":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFilename"},"contentType":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentType"},"byteSize":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesByteSize"},"checksum":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChecksum"},"createdByUserId":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedByUserId"},"voided":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoided"},"createdAt":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"links":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinks"},"contentUrl":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentUrl"}},"required":["id","kind","filename","contentType","byteSize","checksum","createdByUserId","voided","createdAt","updatedAt","links","contentUrl"],"additionalProperties":false},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsMediaGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsMediaGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsMediaGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMediaGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaSettingsGetResponses200ContentApplicationJsonSchemaPropertiesEnabled":{"type":"boolean"},"DocPathsMediaSettingsGetResponses200ContentApplicationJsonSchemaPropertiesMaxUploadBytes":{"type":"number"},"DocPathsMediaSettingsGetResponses200ContentApplicationJsonSchemaPropertiesAcceptedContentTypesItems":{"type":"string"},"DocPathsMediaSettingsGetResponses200ContentApplicationJsonSchemaPropertiesAcceptedContentTypes":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMediaSettingsGetResponses200ContentApplicationJsonSchemaPropertiesAcceptedContentTypesItems"}},"DocPathsMediaSettingsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsMediaSettingsGetResponses200ContentApplicationJsonSchemaPropertiesEnabled"},"maxUploadBytes":{"$ref":"#/components/schemas/DocPathsMediaSettingsGetResponses200ContentApplicationJsonSchemaPropertiesMaxUploadBytes"},"acceptedContentTypes":{"$ref":"#/components/schemas/DocPathsMediaSettingsGetResponses200ContentApplicationJsonSchemaPropertiesAcceptedContentTypes"}},"required":["enabled","maxUploadBytes","acceptedContentTypes"],"additionalProperties":false},"DocPathsMediaSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaSettingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaSettingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMediaSettingsGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaSettingsGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaSettingsGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesFile":{"type":"string"},"DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesKind":{"type":"string"},"DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesRole":{"type":"string"},"DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesRefModule":{"type":"string"},"DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesRefType":{"type":"string"},"DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesRefId":{"type":"string","format":"uuid"},"DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchema":{"type":"object","properties":{"file":{"$ref":"#/components/schemas/DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesFile"},"kind":{"$ref":"#/components/schemas/DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesKind"},"role":{"$ref":"#/components/schemas/DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesRole"},"refModule":{"$ref":"#/components/schemas/DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesRefModule"},"refType":{"$ref":"#/components/schemas/DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesRefType"},"refId":{"$ref":"#/components/schemas/DocPathsMediaUploadPostRequestBodyContentMultipartFormDataSchemaPropertiesRefId"}},"required":["file"],"additionalProperties":false},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesKind":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesFilename":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesContentType":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesByteSize":{"type":"number"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesChecksumAnyOf0":{"type":"null"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesChecksumAnyOf1":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesChecksum":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesChecksumAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesChecksumAnyOf1"}]},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf0":{"type":"null"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf1"}]},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesVoided":{"type":"boolean"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1"}]},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefModule":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefType":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefId":{"type":"string","format":"uuid"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf0":{"type":"null"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf1":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRole":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf1"}]},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItems":{"type":"object","properties":{"refModule":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefModule"},"refType":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefType"},"refId":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefId"},"role":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRole"}},"required":["refModule","refType","refId","role"],"additionalProperties":false},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinks":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinksItems"}},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesContentUrl":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf0":{"type":"null"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesId":{"type":"string","format":"uuid"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesMediaId":{"type":"string","format":"uuid"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRefModule":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRefType":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRefId":{"type":"string","format":"uuid"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRoleAnyOf0":{"type":"null"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRoleAnyOf1":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRole":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRoleAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRoleAnyOf1"}]},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesCreatedAtAnyOf1"}]},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesId"},"mediaId":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesMediaId"},"refModule":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRefModule"},"refType":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRefType"},"refId":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRefId"},"role":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesRole"},"createdAt":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1PropertiesCreatedAt"}},"required":["id","mediaId","refModule","refType","refId","role","createdAt"],"additionalProperties":false},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLink":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinkAnyOf1"}]},"DocPathsMediaUploadPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesId"},"kind":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesKind"},"filename":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesFilename"},"contentType":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesContentType"},"byteSize":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesByteSize"},"checksum":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesChecksum"},"createdByUserId":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedByUserId"},"voided":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesVoided"},"createdAt":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt"},"links":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLinks"},"contentUrl":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesContentUrl"},"link":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses201ContentApplicationJsonSchemaPropertiesLink"}},"required":["id","kind","filename","contentType","byteSize","checksum","createdByUserId","voided","createdAt","updatedAt","links","contentUrl","link"],"additionalProperties":false},"DocPathsMediaUploadPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaUploadPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaUploadPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaUploadPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaUploadPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaUploadPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaUploadPostResponses413ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaUploadPostResponses413ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses413ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaUploadPostResponses415ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaUploadPostResponses415ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaUploadPostResponses415ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdContentGetParameters0Schema":{"type":"string"},"DocPathsMediaIdContentGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsMediaIdContentGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdContentGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdContentGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdContentGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdContentGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdContentGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdContentGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdContentGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdContentGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdGetParameters0Schema":{"type":"string"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesKind":{"type":"string"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesFilename":{"type":"string"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesContentType":{"type":"string"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesByteSize":{"type":"number"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesChecksumAnyOf0":{"type":"null"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesChecksumAnyOf1":{"type":"string"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesChecksum":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesChecksumAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesChecksumAnyOf1"}]},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf0":{"type":"null"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf1"}]},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesVoided":{"type":"boolean"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1"}]},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefModule":{"type":"string"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefType":{"type":"string"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefId":{"type":"string","format":"uuid"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf0":{"type":"null"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf1":{"type":"string"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRole":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf1"}]},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItems":{"type":"object","properties":{"refModule":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefModule"},"refType":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefType"},"refId":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefId"},"role":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRole"}},"required":["refModule","refType","refId","role"],"additionalProperties":false},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinks":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinksItems"}},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesContentUrl":{"type":"string"},"DocPathsMediaIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesId"},"kind":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesKind"},"filename":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesFilename"},"contentType":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesContentType"},"byteSize":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesByteSize"},"checksum":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesChecksum"},"createdByUserId":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserId"},"voided":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesVoided"},"createdAt":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"},"links":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesLinks"},"contentUrl":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses200ContentApplicationJsonSchemaPropertiesContentUrl"}},"required":["id","kind","filename","contentType","byteSize","checksum","createdByUserId","voided","createdAt","updatedAt","links","contentUrl"],"additionalProperties":false},"DocPathsMediaIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMediaIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdSignedUrlPostParameters0Schema":{"type":"string"},"DocPathsMediaIdSignedUrlPostResponses200ContentApplicationJsonSchemaPropertiesUrl":{"type":"string"},"DocPathsMediaIdSignedUrlPostResponses200ContentApplicationJsonSchemaPropertiesExpiresAt":{"type":"string"},"DocPathsMediaIdSignedUrlPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"url":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostResponses200ContentApplicationJsonSchemaPropertiesUrl"},"expiresAt":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostResponses200ContentApplicationJsonSchemaPropertiesExpiresAt"}},"required":["url","expiresAt"],"additionalProperties":false},"DocPathsMediaIdSignedUrlPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdSignedUrlPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdSignedUrlPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdSignedUrlPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMediaIdSignedUrlPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdSignedUrlPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdSignedUrlPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdSignedUrlPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdSignedUrlPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdVoidPostParameters0Schema":{"type":"string"},"DocPathsMediaIdVoidPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{},"additionalProperties":false},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesKind":{"type":"string"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesFilename":{"type":"string"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesContentType":{"type":"string"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesByteSize":{"type":"number"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesChecksumAnyOf0":{"type":"null"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesChecksumAnyOf1":{"type":"string"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesChecksum":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesChecksumAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesChecksumAnyOf1"}]},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf0":{"type":"null"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserIdAnyOf1"}]},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesVoided":{"type":"boolean"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1"}]},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefModule":{"type":"string"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefType":{"type":"string"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefId":{"type":"string","format":"uuid"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf0":{"type":"null"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf1":{"type":"string"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRole":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf0"},{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRoleAnyOf1"}]},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItems":{"type":"object","properties":{"refModule":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefModule"},"refType":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefType"},"refId":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRefId"},"role":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItemsPropertiesRole"}},"required":["refModule","refType","refId","role"],"additionalProperties":false},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinks":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinksItems"}},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesContentUrl":{"type":"string"},"DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesId"},"kind":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesKind"},"filename":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesFilename"},"contentType":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesContentType"},"byteSize":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesByteSize"},"checksum":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesChecksum"},"createdByUserId":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedByUserId"},"voided":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesVoided"},"createdAt":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"},"links":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesLinks"},"contentUrl":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesContentUrl"}},"additionalProperties":false},"DocPathsMediaIdVoidPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdVoidPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdVoidPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdVoidPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMediaIdVoidPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdVoidPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsMediaIdVoidPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMediaIdVoidPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMediaIdVoidPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsSettingsGetResponses200ContentApplicationJsonSchemaPropertiesEnabled":{"type":"boolean"},"DocPathsFormsReportsSettingsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsFormsReportsSettingsGetResponses200ContentApplicationJsonSchemaPropertiesEnabled"}},"required":["enabled"],"additionalProperties":false},"DocPathsFormsReportsSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSettingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSettingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsSettingsGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSettingsGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSettingsGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsSubmissionsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsGetParameters1Schema":{"type":"string"},"DocPathsFormsReportsSubmissionsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsGetParameters4Schema":{"type":"string"},"DocPathsFormsReportsSubmissionsGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsGetParameters7Schema":{"type":"string","enum":["submitted_at","created_at","updated_at"]},"DocPathsFormsReportsSubmissionsGetParameters8Schema":{"type":"number"},"DocPathsFormsReportsSubmissionsGetParameters9Schema":{"type":"number"},"DocPathsFormsReportsSubmissionsGetParameters10Schema":{"type":"string","enum":["asc","desc"]},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemplateId":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQcIssueIdAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQcIssueIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQcIssueId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQcIssueIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQcIssueIdAnyOf1"}]},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemplateName":{"type":"string"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemplateSchemaVersion":{"type":"number"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefinitionSnapshot":{},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPayload":{"type":"object","additionalProperties":true},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedByUserIdAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedByUserIdAnyOf1"}]},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedAtAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedAtAnyOf1":{"type":"string"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedAtAnyOf1"}]},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPdfMediaIdAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPdfMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPdfMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPdfMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPdfMediaIdAnyOf1"}]},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPdfStatus":{"type":"string"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoided":{"type":"boolean"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf1":{"type":"string"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf1"}]},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"workOrderId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWorkOrderId"},"templateId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemplateId"},"qcIssueId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQcIssueId"},"templateName":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemplateName"},"templateSchemaVersion":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTemplateSchemaVersion"},"status":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"definitionSnapshot":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefinitionSnapshot"},"payload":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPayload"},"submittedByUserId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedByUserId"},"submittedAt":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubmittedAt"},"pdfMediaId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPdfMediaId"},"pdfStatus":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPdfStatus"},"voided":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoided"},"voidReason":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReason"},"createdAt":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","workOrderId","templateId","qcIssueId","templateName","templateSchemaVersion","status","definitionSnapshot","payload","submittedByUserId","submittedAt","pdfMediaId","pdfStatus","voided","voidReason","createdAt","updatedAt"],"additionalProperties":false},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsFormsReportsSubmissionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSubmissionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsSubmissionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSubmissionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesTemplateId":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesQcIssueIdAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesQcIssueIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesQcIssueId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesQcIssueIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesQcIssueIdAnyOf1"}]},"DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesPayload":{"type":"object","additionalProperties":true},"DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"workOrderId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesWorkOrderId"},"templateId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesTemplateId"},"qcIssueId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesQcIssueId"},"payload":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostRequestBodyContentApplicationJsonSchemaPropertiesPayload"}},"required":["workOrderId","templateId","payload"],"additionalProperties":false},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesTemplateId":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesTemplateName":{"type":"string"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesTemplateSchemaVersion":{"type":"number"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesPdfStatus":{"type":"string"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesPdfMediaIdAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesPdfMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesPdfMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesPdfMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesPdfMediaIdAnyOf1"}]},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesVoided":{"type":"boolean"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesSubmittedAtAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesSubmittedAtAnyOf1":{"type":"string"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesSubmittedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesSubmittedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesSubmittedAtAnyOf1"}]},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesId"},"workOrderId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesWorkOrderId"},"templateId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesTemplateId"},"templateName":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesTemplateName"},"templateSchemaVersion":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesTemplateSchemaVersion"},"status":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesStatus"},"pdfStatus":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesPdfStatus"},"pdfMediaId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesPdfMediaId"},"voided":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesVoided"},"submittedAt":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesSubmittedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","workOrderId","templateId","templateName","templateSchemaVersion","status","pdfStatus","pdfMediaId","voided","submittedAt","updatedAt"],"additionalProperties":false},"DocPathsFormsReportsSubmissionsSubmitPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSubmissionsSubmitPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsSubmissionsSubmitPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSubmissionsSubmitPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsSubmissionsSubmitPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSubmissionsSubmitPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsSubmitPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsTemplatesImportLlmPostRequestBodyContentApplicationJsonSchemaPropertiesMediaId":{"type":"string","format":"uuid"},"DocPathsFormsReportsTemplatesImportLlmPostRequestBodyContentApplicationJsonSchemaPropertiesPurpose":{"type":"string","enum":["general","qc"]},"DocPathsFormsReportsTemplatesImportLlmPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","maxLength":200},"DocPathsFormsReportsTemplatesImportLlmPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"mediaId":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostRequestBodyContentApplicationJsonSchemaPropertiesMediaId"},"purpose":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostRequestBodyContentApplicationJsonSchemaPropertiesPurpose"},"name":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostRequestBodyContentApplicationJsonSchemaPropertiesName"}},"required":["mediaId"],"additionalProperties":false},"DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchemaPropertiesPurpose":{"type":"string"},"DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchemaPropertiesFieldCount":{"type":"number"},"DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchemaPropertiesExtracted":{"type":"boolean"},"DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchemaPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchemaPropertiesName"},"purpose":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchemaPropertiesPurpose"},"fieldCount":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchemaPropertiesFieldCount"},"extracted":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses201ContentApplicationJsonSchemaPropertiesExtracted"}},"required":["id","name","purpose","fieldCount","extracted"],"additionalProperties":false},"DocPathsFormsReportsTemplatesImportLlmPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesImportLlmPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsTemplatesImportLlmPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesImportLlmPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsTemplatesImportLlmPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesImportLlmPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsTemplatesImportLlmPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesImportLlmPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesImportLlmPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsTemplatesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsFormsReportsTemplatesGetParameters1Schema":{"type":"string"},"DocPathsFormsReportsTemplatesGetParameters2Schema":{"type":"string"},"DocPathsFormsReportsTemplatesGetParameters3Schema":{"type":"string"},"DocPathsFormsReportsTemplatesGetParameters4Schema":{"type":"string"},"DocPathsFormsReportsTemplatesGetParameters5Schema":{"type":"string","enum":["name","status","created_at","updated_at"]},"DocPathsFormsReportsTemplatesGetParameters6Schema":{"type":"number"},"DocPathsFormsReportsTemplatesGetParameters7Schema":{"type":"number"},"DocPathsFormsReportsTemplatesGetParameters8Schema":{"type":"string","enum":["asc","desc"]},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurpose":{"type":"string"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"type":"string"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSchemaVersion":{"type":"number"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefinition":{},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"status":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"purpose":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPurpose"},"source":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"},"schemaVersion":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSchemaVersion"},"definition":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefinition"},"createdAt":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","description","status","purpose","source","schemaVersion","definition","createdAt","updatedAt"],"additionalProperties":false},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsFormsReportsTemplatesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsTemplatesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":2000},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["draft","published","archived"]},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesPurpose":{"type":"string","enum":["general","qc"]},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesSource":{"type":"string","enum":["manual","llm_import"]},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesId":{"type":"string","minLength":1,"maxLength":64,"pattern":"^[a-zA-Z0-9_]+$"},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesTitle":{"type":"string","minLength":1,"maxLength":200},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesDescription":{"type":"string","maxLength":500},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesType":{"type":"string","enum":["text","textarea","number","select","checkbox","date","photo","signature","measurement"]},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesDescription":{"type":"string","maxLength":500},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesRequired":{"type":"boolean"},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesPlaceholder":{"type":"string","maxLength":200},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItemsPropertiesValue":{"type":"string","minLength":1,"maxLength":100},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItemsPropertiesLabel":{"type":"string","minLength":1,"maxLength":200},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItems":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItemsPropertiesLabel"}},"required":["value","label"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItems"},"maxItems":100},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesMin":{"type":"number"},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesMax":{"type":"number"},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesUnitsItems":{"type":"string","minLength":1,"maxLength":20},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesUnits":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesUnitsItems"},"maxItems":20},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesDefaultUnit":{"type":"string","minLength":1,"maxLength":20},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesId"},"type":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesType"},"label":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesDescription"},"required":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesRequired"},"placeholder":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesPlaceholder"},"options":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptions"},"min":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesMin"},"max":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesMax"},"units":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesUnits"},"default_unit":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesDefaultUnit"}},"required":["id","type","label"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFields":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItems"},"minItems":1,"maxItems":100},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesDescription"},"fields":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFields"}},"required":["id","title","fields"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSections":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItems"},"minItems":1,"maxItems":50},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinition":{"type":"object","properties":{"sections":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSections"}},"required":["sections"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"status":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"purpose":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesPurpose"},"source":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesSource"},"definition":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesDefinition"}},"required":["name","definition"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFormsReportsTemplatesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":2000},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["draft","published","archived"]},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesPurpose":{"type":"string","enum":["general","qc"]},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesSource":{"type":"string","enum":["manual","llm_import"]},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesId":{"type":"string","minLength":1,"maxLength":64,"pattern":"^[a-zA-Z0-9_]+$"},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesTitle":{"type":"string","minLength":1,"maxLength":200},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesDescription":{"type":"string","maxLength":500},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesType":{"type":"string","enum":["text","textarea","number","select","checkbox","date","photo","signature","measurement"]},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesDescription":{"type":"string","maxLength":500},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesRequired":{"type":"boolean"},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesPlaceholder":{"type":"string","maxLength":200},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItemsPropertiesValue":{"type":"string","minLength":1,"maxLength":100},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItemsPropertiesLabel":{"type":"string","minLength":1,"maxLength":200},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItems":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItemsPropertiesLabel"}},"required":["value","label"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptionsItems"},"maxItems":100},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesMin":{"type":"number"},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesMax":{"type":"number"},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesUnitsItems":{"type":"string","minLength":1,"maxLength":20},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesUnits":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesUnitsItems"},"maxItems":20},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesDefaultUnit":{"type":"string","minLength":1,"maxLength":20},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesId"},"type":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesType"},"label":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesDescription"},"required":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesRequired"},"placeholder":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesPlaceholder"},"options":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesOptions"},"min":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesMin"},"max":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesMax"},"units":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesUnits"},"default_unit":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItemsPropertiesDefaultUnit"}},"required":["id","type","label"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFields":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFieldsItems"},"minItems":1,"maxItems":100},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesDescription"},"fields":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItemsPropertiesFields"}},"required":["id","title","fields"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSections":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSectionsItems"},"minItems":1,"maxItems":50},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinition":{"type":"object","properties":{"sections":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinitionPropertiesSections"}},"required":["sections"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"status":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"purpose":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesPurpose"},"source":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesSource"},"definition":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesDefinition"},"id":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsFormsReportsTemplatesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsTemplatesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsTemplatesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFormsReportsTemplatesDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsFormsReportsTemplatesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsFormsReportsTemplatesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsFormsReportsTemplatesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsTemplatesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsTemplatesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsTemplatesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsSubmissionsIdVoidPostParameters0Schema":{"type":"string"},"DocPathsFormsReportsSubmissionsIdVoidPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","minLength":1,"maxLength":500},"DocPathsFormsReportsSubmissionsIdVoidPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"reason":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostRequestBodyContentApplicationJsonSchemaPropertiesReason"}},"required":["reason"],"additionalProperties":false},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesTemplateId":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesTemplateName":{"type":"string"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesTemplateSchemaVersion":{"type":"number"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesPdfStatus":{"type":"string"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesPdfMediaIdAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesPdfMediaIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesPdfMediaId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesPdfMediaIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesPdfMediaIdAnyOf1"}]},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesVoided":{"type":"boolean"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesSubmittedAtAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesSubmittedAtAnyOf1":{"type":"string"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesSubmittedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesSubmittedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesSubmittedAtAnyOf1"}]},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesId"},"workOrderId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId"},"templateId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesTemplateId"},"templateName":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesTemplateName"},"templateSchemaVersion":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesTemplateSchemaVersion"},"status":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesStatus"},"pdfStatus":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesPdfStatus"},"pdfMediaId":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesPdfMediaId"},"voided":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesVoided"},"submittedAt":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesSubmittedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","workOrderId","templateId","templateName","templateSchemaVersion","status","pdfStatus","pdfMediaId","voided","submittedAt","updatedAt"],"additionalProperties":false},"DocPathsFormsReportsSubmissionsIdVoidPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsSubmissionsIdVoidPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsSubmissionsIdVoidPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFormsReportsSubmissionsIdVoidPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFormsReportsSubmissionsIdVoidPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFormsReportsSubmissionsIdVoidPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFormsReportsSubmissionsIdVoidPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsQcIssuesGetParameters1Schema":{"type":"string"},"DocPathsQcIssuesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsQcIssuesGetParameters3Schema":{"type":"string","enum":["ncr","production_problem"]},"DocPathsQcIssuesGetParameters4Schema":{"type":"string"},"DocPathsQcIssuesGetParameters5Schema":{"type":"string","enum":["low","normal","high"]},"DocPathsQcIssuesGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsQcIssuesGetParameters7Schema":{"type":"boolean"},"DocPathsQcIssuesGetParameters8Schema":{"type":"string","format":"uuid"},"DocPathsQcIssuesGetParameters9Schema":{"type":"boolean"},"DocPathsQcIssuesGetParameters10Schema":{"type":"boolean"},"DocPathsQcIssuesGetParameters11Schema":{"type":"string"},"DocPathsQcIssuesGetParameters12Schema":{"type":"string","enum":["number","kind","status","severity","reported_at","due_at","created_at","updated_at"]},"DocPathsQcIssuesGetParameters13Schema":{"type":"number"},"DocPathsQcIssuesGetParameters14Schema":{"type":"number"},"DocPathsQcIssuesGetParameters15Schema":{"type":"string","enum":["asc","desc"]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeverity":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedByUserIdAnyOf0":{"type":"null"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedByUserIdAnyOf1"}]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedAtAnyOf1"}]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserIdAnyOf1"}]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueAtAnyOf0":{"type":"null"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueAtAnyOf1":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueAtAnyOf1"}]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolutionNoteAnyOf0":{"type":"null"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolutionNoteAnyOf1":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolutionNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolutionNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolutionNoteAnyOf1"}]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAtAnyOf1"}]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAtAnyOf1"}]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoided":{"type":"boolean"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf0":{"type":"null"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf1":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReasonAnyOf1"}]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNumber"},"workOrderId":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWorkOrderId"},"kind":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"title":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"status":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"severity":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSeverity"},"reportedByUserId":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedByUserId"},"reportedAt":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReportedAt"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOwnerUserId"},"dueAt":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueAt"},"resolutionNote":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolutionNote"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResolvedAt"},"closedAt":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesClosedAt"},"voided":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoided"},"voidReason":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVoidReason"},"createdAt":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","number","workOrderId","kind","title","description","status","severity","reportedByUserId","reportedAt","ownerUserId","dueAt","resolutionNote","resolvedAt","closedAt","voided","voidReason","createdAt","updatedAt"],"additionalProperties":false},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsQcIssuesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsQcIssuesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsQcIssuesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["ncr","production_problem"]},"DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":200},"DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":5000},"DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesSeverity":{"type":"string","enum":["low","normal","high"]},"DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesMediaIdsItems":{"type":"string","format":"uuid"},"DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesMediaIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesMediaIdsItems"},"maxItems":20},"DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"workOrderId":{"$ref":"#/components/schemas/DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesWorkOrderId"},"kind":{"$ref":"#/components/schemas/DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesKind"},"title":{"$ref":"#/components/schemas/DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"severity":{"$ref":"#/components/schemas/DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesSeverity"},"mediaIds":{"$ref":"#/components/schemas/DocPathsQcIssuesPostRequestBodyContentApplicationJsonSchemaPropertiesMediaIds"}},"required":["workOrderId","kind","title"],"additionalProperties":false},"DocPathsQcIssuesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsQcIssuesPostResponses201ContentApplicationJsonSchemaPropertiesNumber":{"type":"string"},"DocPathsQcIssuesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsQcIssuesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsQcIssuesPostResponses201ContentApplicationJsonSchemaPropertiesNumber"}},"required":["id","number"],"additionalProperties":false},"DocPathsQcIssuesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsQcIssuesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsQcSettingsGetResponses200ContentApplicationJsonSchemaPropertiesEnabled":{"type":"boolean"},"DocPathsQcSettingsGetResponses200ContentApplicationJsonSchemaPropertiesFormsReportsEnabled":{"type":"boolean"},"DocPathsQcSettingsGetResponses200ContentApplicationJsonSchemaPropertiesChecklistsEnabled":{"type":"boolean"},"DocPathsQcSettingsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsQcSettingsGetResponses200ContentApplicationJsonSchemaPropertiesEnabled"},"formsReportsEnabled":{"$ref":"#/components/schemas/DocPathsQcSettingsGetResponses200ContentApplicationJsonSchemaPropertiesFormsReportsEnabled"},"checklistsEnabled":{"$ref":"#/components/schemas/DocPathsQcSettingsGetResponses200ContentApplicationJsonSchemaPropertiesChecklistsEnabled"}},"required":["enabled","formsReportsEnabled","checklistsEnabled"],"additionalProperties":false},"DocPathsQcSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcSettingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcSettingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsQcSettingsGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcSettingsGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcSettingsGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdGetParameters0Schema":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesNumber":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesKind":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesTitle":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesSeverity":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedByUserIdAnyOf0":{"type":"null"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedByUserIdAnyOf1"}]},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedAtAnyOf1"}]},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1"}]},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDueAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf1"}]},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolutionNoteAnyOf0":{"type":"null"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolutionNoteAnyOf1":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolutionNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolutionNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolutionNoteAnyOf1"}]},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolvedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolvedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolvedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolvedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolvedAtAnyOf1"}]},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesClosedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesClosedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesClosedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesClosedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesClosedAtAnyOf1"}]},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesVoided":{"type":"boolean"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesVoidReasonAnyOf0":{"type":"null"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesVoidReasonAnyOf1":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesVoidReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesVoidReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesVoidReasonAnyOf1"}]},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAtAnyOf1"}]},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesNumber"},"workOrderId":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId"},"kind":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesKind"},"title":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDescription"},"status":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesStatus"},"severity":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesSeverity"},"reportedByUserId":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedByUserId"},"reportedAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesReportedAt"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesOwnerUserId"},"dueAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesDueAt"},"resolutionNote":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolutionNote"},"resolvedAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesResolvedAt"},"closedAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesClosedAt"},"voided":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesVoided"},"voidReason":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesVoidReason"},"createdAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","number","workOrderId","kind","title","description","status","severity","reportedByUserId","reportedAt","ownerUserId","dueAt","resolutionNote","resolvedAt","closedAt","voided","voidReason","createdAt","updatedAt"],"additionalProperties":false},"DocPathsQcIssuesIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsQcIssuesIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdPutParameters0Schema":{"type":"string"},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["ncr","production_problem"]},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesSeverity":{"type":"string","enum":["low","normal","high"]},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1"}]},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDueAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDueAtAnyOf1":{"type":"string","format":"datetime"},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDueAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDueAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDueAtAnyOf1"}]},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":200},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":5000},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"kind":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesKind"},"severity":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesSeverity"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerUserId"},"dueAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDueAt"},"title":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"}},"additionalProperties":false},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesNumber":{"type":"string"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesKind":{"type":"string"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesSeverity":{"type":"string"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1"}]},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesDueAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf1"}]},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesVoided":{"type":"boolean"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesNumber"},"workOrderId":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId"},"kind":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesKind"},"status":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesStatus"},"severity":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesSeverity"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesOwnerUserId"},"dueAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesDueAt"},"voided":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesVoided"},"updatedAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","number","workOrderId","kind","status","severity","ownerUserId","dueAt","voided","updatedAt"],"additionalProperties":false},"DocPathsQcIssuesIdPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdPutResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdPutResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdPutResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdStatusPostParameters0Schema":{"type":"string"},"DocPathsQcIssuesIdStatusPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["open","in_progress","resolved","closed"]},"DocPathsQcIssuesIdStatusPostRequestBodyContentApplicationJsonSchemaPropertiesResolutionNoteAnyOf0":{"type":"null"},"DocPathsQcIssuesIdStatusPostRequestBodyContentApplicationJsonSchemaPropertiesResolutionNoteAnyOf1":{"type":"string","maxLength":2000},"DocPathsQcIssuesIdStatusPostRequestBodyContentApplicationJsonSchemaPropertiesResolutionNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostRequestBodyContentApplicationJsonSchemaPropertiesResolutionNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostRequestBodyContentApplicationJsonSchemaPropertiesResolutionNoteAnyOf1"}]},"DocPathsQcIssuesIdStatusPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"resolutionNote":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostRequestBodyContentApplicationJsonSchemaPropertiesResolutionNote"}},"required":["status"],"additionalProperties":false},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesNumber":{"type":"string"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesKind":{"type":"string"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesSeverity":{"type":"string"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1"}]},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesDueAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf1"}]},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesVoided":{"type":"boolean"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesNumber"},"workOrderId":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId"},"kind":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesKind"},"status":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesStatus"},"severity":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesSeverity"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserId"},"dueAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesDueAt"},"voided":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesVoided"},"updatedAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","number","workOrderId","kind","status","severity","ownerUserId","dueAt","voided","updatedAt"],"additionalProperties":false},"DocPathsQcIssuesIdStatusPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdStatusPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdStatusPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdStatusPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdStatusPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdStatusPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdStatusPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdStatusPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdStatusPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdStatusPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdStatusPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdVoidPostParameters0Schema":{"type":"string"},"DocPathsQcIssuesIdVoidPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","minLength":1,"maxLength":500},"DocPathsQcIssuesIdVoidPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"reason":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostRequestBodyContentApplicationJsonSchemaPropertiesReason"}},"required":["reason"],"additionalProperties":false},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesNumber":{"type":"string"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesKind":{"type":"string"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesSeverity":{"type":"string"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0":{"type":"null"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserIdAnyOf1"}]},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesDueAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesDueAtAnyOf1"}]},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesVoided":{"type":"boolean"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesId"},"number":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesNumber"},"workOrderId":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesWorkOrderId"},"kind":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesKind"},"status":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesStatus"},"severity":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesSeverity"},"ownerUserId":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesOwnerUserId"},"dueAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesDueAt"},"voided":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesVoided"},"updatedAt":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","number","workOrderId","kind","status","severity","ownerUserId","dueAt","voided","updatedAt"],"additionalProperties":false},"DocPathsQcIssuesIdVoidPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdVoidPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdVoidPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdVoidPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdVoidPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdVoidPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdVoidPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdVoidPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsQcIssuesIdVoidPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsQcIssuesIdVoidPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsQcIssuesIdVoidPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true}}},"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":"Feature Toggles","description":"Global feature flags with tenant-level overrides."},{"name":"Operations","description":"Work orders, customers and sites — the Tr3 structural hub."},{"name":"Time tracking","description":"Operator time sessions on work orders — Start / Pause / Resume / Stop."},{"name":"Workforce","description":"Production operators, PIN/kiosk sign-in and the operator home screen."},{"name":"Media","description":"Files, photos and signature PNGs attached polymorphically to any Tr3 record."},{"name":"Forms and reports","description":"Configurable form templates and submissions filed against work orders."},{"name":"Quality control","description":"Non-conformities and production problems filed against work orders, with photos."}]}