{"openapi":"3.1.0","info":{"title":"Open Mercato API","version":"0.6.6","description":"Auto-generated OpenAPI definition for all enabled modules."},"servers":[{"url":"https://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/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 for the signed-in user.","tags":["Authentication & Accounts"],"parameters":[],"responses":{"200":{"description":"Profile payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses200ContentApplicationJsonSchema"},"example":{"email":"user@example.com","roles":["string"]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/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.\n\nRequires features: auth.acl.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/auth/roles/acl?roleId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["auth.acl.manage"],"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.\n\nRequires features: auth.acl.manage","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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthRolesAclPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["auth.acl.manage"],"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.\n\nRequires features: auth.roles.list","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://ltscanada-erp.northbound.run/api/auth/roles?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["auth.roles.list"],"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.\n\nRequires features: auth.roles.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["auth.roles.manage"],"x-require-auth":true},"put":{"operationId":"auth_put_auth_roles","summary":"Update role","description":"Updates mutable fields on an existing role.\n\nRequires features: auth.roles.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["auth.roles.manage"],"x-require-auth":true},"delete":{"operationId":"auth_delete_auth_roles","summary":"Delete role","description":"Deletes a role by identifier. Fails when users remain assigned.\n\nRequires features: auth.roles.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/auth/roles?id=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["auth.roles.manage"],"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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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.\n\nRequires features: auth.sidebar.manage","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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/auth/sidebar/preferences\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-features":["auth.sidebar.manage"],"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`.\n\nRequires features: 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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthSidebarPreferencesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/auth/sidebar/preferences\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["auth.sidebar.manage"],"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"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/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.\n\nRequires features: auth.sidebar.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/auth/sidebar/variants\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-features":["auth.sidebar.manage"],"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.\n\nRequires features: auth.acl.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/auth/users/acl?userId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["auth.acl.manage"],"x-require-auth":true},"put":{"operationId":"auth_put_auth_users_acl","summary":"Update user ACL","description":"Configures per-user ACL overrides, including super admin access, feature list, and organization scope.\n\nRequires features: auth.acl.manage","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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersAclPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/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-features":["auth.acl.manage"],"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.\n\nRequires features: auth.users.edit","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://ltscanada-erp.northbound.run/api/auth/users/consents?userId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["auth.users.edit"],"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.\n\nRequires features: auth.users.create","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://ltscanada-erp.northbound.run/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-features":["auth.users.create"],"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.\n\nRequires features: auth.users.list","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":"roleIds","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters6Schema"},"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"],"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://ltscanada-erp.northbound.run/api/auth/users?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["auth.users.list"],"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.\n\nRequires features: auth.users.create","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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/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-features":["auth.users.create"],"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.\n\nRequires features: auth.users.edit","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","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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"User not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthUsersPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/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-features":["auth.users.edit"],"x-require-auth":true},"delete":{"operationId":"auth_delete_auth_users","summary":"Delete user","description":"Deletes a user by identifier. Undo support is provided via the command bus.\n\nRequires features: auth.users.delete","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","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/auth/users?id=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["auth.users.delete"],"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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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).\n\nRequires features: auth.sidebar.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["auth.sidebar.manage"],"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).\n\nRequires features: auth.sidebar.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/auth/sidebar/variants/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["auth.sidebar.manage"],"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"]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthAdminNavGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/auth/admin/nav\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/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.\n\nRequires features: auth.acl.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuthFeaturesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/auth/features\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["auth.acl.manage"],"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://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/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.\n\nRequires features: directory.organizations.view","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,"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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/directory/organization-branding\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["directory.organizations.view"],"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.\n\nRequires features: directory.organizations.manage","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,"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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["directory.organizations.manage"],"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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationSwitcherGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/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.\n\nRequires features: directory.organizations.view","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/directory/organizations?page=1&pageSize=50&view=options\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["directory.organizations.view"],"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.\n\nRequires features: directory.organizations.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/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-features":["directory.organizations.manage"],"x-require-auth":true},"put":{"operationId":"directory_put_directory_organizations","summary":"Update organization","description":"Updates organization details and hierarchy assignments.\n\nRequires features: directory.organizations.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/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-features":["directory.organizations.manage"],"x-require-auth":true},"delete":{"operationId":"directory_delete_directory_organizations","summary":"Delete organization","description":"Soft deletes an organization identified by id.\n\nRequires features: directory.organizations.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/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-features":["directory.organizations.manage"],"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.\n\nRequires features: directory.tenants.view","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/directory/tenants?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["directory.tenants.view"],"x-require-auth":true},"post":{"operationId":"directory_post_directory_tenants","summary":"Create tenant","description":"Creates a new tenant and returns its identifier.\n\nRequires features: directory.tenants.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/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-features":["directory.tenants.manage"],"x-require-auth":true},"put":{"operationId":"directory_put_directory_tenants","summary":"Update tenant","description":"Updates tenant properties such as name or activation state.\n\nRequires features: directory.tenants.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/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-features":["directory.tenants.manage"],"x-require-auth":true},"delete":{"operationId":"directory_delete_directory_tenants","summary":"Delete tenant","description":"Soft deletes the tenant identified by id.\n\nRequires features: directory.tenants.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/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-features":["directory.tenants.manage"],"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://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/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.\n\nRequires features: configs.cache.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/configs/cache\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["configs.cache.view"],"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.\n\nRequires features: configs.cache.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["configs.cache.manage"],"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.\n\nRequires features: configs.system_status.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/configs/module-telemetry\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["configs.system_status.view"],"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.\n\nRequires features: configs.manage","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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/configs/module-telemetry\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["configs.manage"],"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.\n\nRequires features: configs.system_status.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/configs/system-status\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["configs.system_status.view"],"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.\n\nRequires features: configs.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/configs/system-status\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["configs.manage"],"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.\n\nRequires features: configs.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/configs/upgrade-actions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["configs.manage"],"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.\n\nRequires features: configs.manage","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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["configs.manage"],"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.\n\nRequires features: entities.definitions.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["entities.definitions.manage"],"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.\n\nRequires features: entities.definitions.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/entities/definitions.manage?entityId=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["entities.definitions.manage"],"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.\n\nRequires features: entities.definitions.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsRestorePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["entities.definitions.manage"],"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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/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.\n\nRequires features: entities.definitions.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["entities.definitions.manage"],"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.\n\nRequires features: entities.definitions.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["entities.definitions.manage"],"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.\n\nRequires features: entities.definitions.manage","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://ltscanada-erp.northbound.run/api/entities/encryption?entityId=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["entities.definitions.manage"],"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.\n\nRequires features: entities.definitions.manage","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"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/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-features":["entities.definitions.manage"],"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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/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.\n\nRequires features: entities.definitions.manage","tags":["Entities"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","label":"string","description":null,"showInSidebar":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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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}\""}],"x-require-features":["entities.definitions.manage"],"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.\n\nRequires features: entities.definitions.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["entities.definitions.manage"],"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.\n\nRequires features: entities.records.view","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/entities/records?entityId=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["entities.records.view"],"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.\n\nRequires features: entities.records.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["entities.records.manage"],"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.\n\nRequires features: entities.records.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["entities.records.manage"],"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.\n\nRequires features: entities.records.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["entities.records.manage"],"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.\n\nRequires features: entities.definitions.view","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRelationsOptionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/entities/relations/options?entityId=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["entities.definitions.view"],"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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEntitiesSidebarEntitiesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/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.\n\nRequires features: query_index.purge","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexPurgePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["query_index.purge"],"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.\n\nRequires features: query_index.reindex","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexReindexPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["query_index.reindex"],"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.\n\nRequires features: query_index.status.view","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,"ok":true,"job":{"status":"idle","startedAt":null,"finishedAt":null,"heartbeatAt":null,"processedCount":null,"totalCount":null,"scope":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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/query_index/status\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["query_index.status.view"],"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://ltscanada-erp.northbound.run/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.\n\nRequires features: audit_logs.view_self","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsAccessGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/audit_logs/audit-logs/access\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["audit_logs.view_self"],"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.\n\nRequires features: audit_logs.view_self","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsExportGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/audit_logs/audit-logs/actions/export?includeRelated=false&undoableOnly=false\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["audit_logs.view_self"],"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.\n\nRequires features: audit_logs.redo_self","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsRedoPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/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-features":["audit_logs.redo_self"],"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.\n\nRequires features: audit_logs.view_self","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/audit_logs/audit-logs/actions?includeRelated=false&includeTotal=false&undoableOnly=false\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["audit_logs.view_self"],"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.\n\nRequires features: audit_logs.undo_self","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAuditLogsAuditLogsActionsUndoPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/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-features":["audit_logs.undo_self"],"x-require-auth":true}},"/notifications/batch":{"post":{"operationId":"notifications_post_notifications_batch","summary":"POST /notifications/batch","description":"Requires features: notifications.create","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://ltscanada-erp.northbound.run/api/notifications/batch\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["notifications.create"],"x-require-auth":true}},"/notifications/feature":{"post":{"operationId":"notifications_post_notifications_feature","summary":"POST /notifications/feature","description":"Requires features: notifications.create","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://ltscanada-erp.northbound.run/api/notifications/feature\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["notifications.create"],"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://ltscanada-erp.northbound.run/api/notifications/mark-all-read\" \\\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","description":"Requires features: notifications.create","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://ltscanada-erp.northbound.run/api/notifications/role\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["notifications.create"],"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}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/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.\n\nRequires features: notifications.create","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://ltscanada-erp.northbound.run/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-features":["notifications.create"],"x-require-auth":true}},"/notifications/settings":{"get":{"operationId":"notifications_get_notifications_settings","summary":"GET /notifications/settings","description":"Requires features: notifications.manage","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://ltscanada-erp.northbound.run/api/notifications/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["notifications.manage"],"x-require-auth":true},"post":{"operationId":"notifications_post_notifications_settings","summary":"POST /notifications/settings","description":"Requires features: notifications.manage","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://ltscanada-erp.northbound.run/api/notifications/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["notifications.manage"],"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://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/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://ltscanada-erp.northbound.run/api/notifications/:id/restore\" \\\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.\n\nRequires features: dashboards.view","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/dashboards/layout\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dashboards.view"],"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.\n\nRequires features: dashboards.configure","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/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-features":["dashboards.configure"],"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.\n\nRequires features: dashboards.admin.assign-widgets","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/dashboards/roles/widgets?roleId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dashboards.admin.assign-widgets"],"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.\n\nRequires features: dashboards.admin.assign-widgets","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/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-features":["dashboards.admin.assign-widgets"],"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.\n\nRequires features: dashboards.admin.assign-widgets","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/dashboards/users/widgets?userId=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dashboards.admin.assign-widgets"],"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.\n\nRequires features: dashboards.admin.assign-widgets","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/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-features":["dashboards.admin.assign-widgets"],"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.\n\nRequires features: analytics.view","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}}}]}}}},"400":{"description":"Invalid request payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["analytics.view"],"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.\n\nRequires features: analytics.view","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}}}}},"400":{"description":"Invalid request payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/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-features":["analytics.view"],"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.\n\nRequires features: dashboards.configure","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["dashboards.configure"],"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.\n\nRequires features: dashboards.admin.assign-widgets","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/dashboards/widgets/catalog\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dashboards.admin.assign-widgets"],"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).\n\nRequires features: workflows.view","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://ltscanada-erp.northbound.run/api/events\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["workflows.view"],"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://ltscanada-erp.northbound.run/api/events/stream\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/integrations/logs":{"get":{"operationId":"integrations_get_integrations_logs","summary":"List integration logs","description":"Requires features: integrations.manage","tags":["Integrations"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsLogsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsLogsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsLogsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/integrations/logs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["integrations.manage"],"x-require-auth":true}},"/integrations":{"get":{"operationId":"integrations_get_integrations","summary":"List integrations","description":"Returns a paginated collection of integrations.\n\nRequires features: integrations.view","tags":["Integrations"],"parameters":[{"name":"q","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters0Schema"},"example":"string"},{"name":"category","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters1Schema"},"example":"string"},{"name":"bundleId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters2Schema"},"example":"string"},{"name":"isEnabled","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters3Schema"},"example":true},{"name":"healthStatus","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters4Schema"},"example":"healthy"},{"name":"sort","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters5Schema"},"example":"title"},{"name":"order","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters6Schema"},"example":"asc"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters7Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters8Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetParameters9Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated integrations","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","title":"string","description":null,"category":null,"tags":["string"],"hub":null,"providerKey":null,"bundleId":null,"author":null,"company":null,"version":null,"hasCredentials":true,"isEnabled":true,"apiVersion":null,"healthStatus":"healthy","lastHealthCheckedAt":null,"lastHealthLatencyMs":null,"enabledAt":null,"analytics":{"lastActivityAt":null,"totalCount":1,"errorCount":1,"errorRate":1,"dailyCounts":[1]}}],"total":1,"totalPages":1,"bundles":[{"id":"string","title":"string","description":"string","icon":null,"integrationCount":1,"enabledCount":1}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/integrations?order=asc&page=1&pageSize=100\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["integrations.view"],"x-require-auth":true}},"/integrations/{id}/credentials":{"get":{"operationId":"integrations_get_integrations_id_credentials","summary":"Get or save integration credentials","description":"Requires features: integrations.credentials.manage","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/integrations/:id/credentials\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["integrations.credentials.manage"],"x-require-auth":true},"put":{"operationId":"integrations_put_integrations_id_credentials","summary":"Get or save integration credentials","description":"Requires features: integrations.credentials.manage","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/integrations/:id/credentials\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["integrations.credentials.manage"],"x-require-auth":true}},"/integrations/{id}/health":{"post":{"operationId":"integrations_post_integrations_id_health","summary":"Run health check for an integration","description":"Requires features: integrations.manage","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/integrations/:id/health\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["integrations.manage"],"x-require-auth":true}},"/integrations/{id}":{"get":{"operationId":"integrations_get_integrations_id","summary":"Get integration detail","description":"Requires features: integrations.view","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/integrations/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["integrations.view"],"x-require-auth":true}},"/integrations/{id}/state":{"put":{"operationId":"integrations_put_integrations_id_state","summary":"Update integration state","description":"Requires features: integrations.manage","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/integrations/:id/state\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["integrations.manage"],"x-require-auth":true}},"/integrations/{id}/version":{"put":{"operationId":"integrations_put_integrations_id_version","summary":"Change integration API version","description":"Requires features: integrations.manage","tags":["Integrations"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/integrations/:id/version\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["integrations.manage"],"x-require-auth":true}},"/messages/object-types":{"get":{"operationId":"messages_get_messages_object_types","summary":"List registered message object types for a message type","description":"Requires features: messages.compose","tags":["Messages"],"parameters":[{"name":"messageType","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetParameters0Schema"},"example":"string"}],"responses":{"200":{"description":"Message object types","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"module":"string","entityType":"string","labelKey":"string","icon":"string","actions":[{"id":"string","labelKey":"string"}]}]}}}},"400":{"description":"Invalid query","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/messages/object-types?messageType=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.compose"],"x-require-auth":true}},"/messages":{"get":{"operationId":"messages_get_messages","summary":"List messages","tags":["Messages"],"parameters":[{"name":"folder","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters0Schema"},"example":"inbox"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters1Schema"},"example":"unread"},{"name":"type","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters2Schema"},"example":"string"},{"name":"visibility","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters3Schema"},"example":"public"},{"name":"sourceEntityType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters4Schema"},"example":"string"},{"name":"sourceEntityId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"externalEmail","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters6Schema"},"example":"user@example.com"},{"name":"hasObjects","in":"query","required":false,"schema":{}},{"name":"hasAttachments","in":"query","required":false,"schema":{}},{"name":"hasActions","in":"query","required":false,"schema":{}},{"name":"senderId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters10Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters11Schema"},"example":"string"},{"name":"since","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters12Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters13Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetParameters14Schema"},"example":1}],"responses":{"200":{"description":"Message list","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","type":"string","visibility":null,"sourceEntityType":null,"sourceEntityId":null,"externalEmail":null,"externalName":null,"subject":"string","bodyPreview":"string","senderUserId":"00000000-0000-4000-8000-000000000000","senderName":null,"senderEmail":null,"priority":"string","status":"string","hasObjects":true,"objectCount":1,"hasAttachments":true,"attachmentCount":1,"recipientCount":1,"hasActions":true,"actionTaken":null,"sentAt":null,"readAt":null,"threadId":null}],"page":1,"pageSize":1,"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/messages?folder=inbox&page=1&pageSize=20\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"messages_post_messages","summary":"Compose a message","description":"Requires features: messages.compose","tags":["Messages"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchema"},"example":{"type":"default","visibility":null,"recipients":[],"subject":"","body":"","bodyFormat":"text","priority":"normal","sendViaEmail":false,"isDraft":false}}}},"responses":{"201":{"description":"Message created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","threadId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/messages\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"type\\\": \\\"default\\\",\n  \\\"visibility\\\": null,\n  \\\"recipients\\\": [],\n  \\\"subject\\\": \\\"\\\",\n  \\\"body\\\": \\\"\\\",\n  \\\"bodyFormat\\\": \\\"text\\\",\n  \\\"priority\\\": \\\"normal\\\",\n  \\\"sendViaEmail\\\": false,\n  \\\"isDraft\\\": false\n}\""}],"x-require-features":["messages.compose"],"x-require-auth":true}},"/messages/types":{"get":{"operationId":"messages_get_messages_types","summary":"List registered message types","description":"Requires features: messages.view","tags":["Messages"],"parameters":[],"responses":{"200":{"description":"Message types","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"type":"string","module":"string","labelKey":"string","icon":"string","color":null,"allowReply":true,"allowForward":true,"actionsExpireAfterHours":null,"ui":null}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/messages/types\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.view"],"x-require-auth":true}},"/messages/unread-count":{"get":{"operationId":"messages_get_messages_unread_count","summary":"Get unread message count","tags":["Messages"],"parameters":[],"responses":{"200":{"description":"Unread count","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesUnreadCountGetResponses200ContentApplicationJsonSchema"},"example":{"unreadCount":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesUnreadCountGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/messages/unread-count\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/messages/{id}/actions/{actionId}":{"post":{"operationId":"messages_post_messages_id_actions_actionId","summary":"Execute message action","description":"Requires features: messages.actions","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostParameters0Schema"}},{"name":"actionId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostParameters1Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostRequestBodyContentApplicationJsonSchema"}}}},"responses":{"200":{"description":"Action executed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"actionId":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Action not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Action already taken, or the message was modified concurrently (optimistic lock conflict)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostResponses409ContentApplicationJsonSchema"}}}},"410":{"description":"Action expired","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostResponses410ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/messages/:id/actions/:actionId\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.actions"],"x-require-auth":true}},"/messages/{id}/archive":{"put":{"operationId":"messages_put_messages_id_archive","summary":"Archive message","description":"Requires features: messages.view","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutParameters0Schema"}}],"responses":{"200":{"description":"Message archived","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/messages/:id/archive\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.view"],"x-require-auth":true},"delete":{"operationId":"messages_delete_messages_id_archive","summary":"Unarchive message","description":"Requires features: messages.view","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteParameters0Schema"}}],"responses":{"200":{"description":"Message unarchived","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/messages/:id/archive\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.view"],"x-require-auth":true}},"/messages/{id}/attachments":{"get":{"operationId":"messages_get_messages_id_attachments","summary":"List message attachments","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetParameters0Schema"}}],"responses":{"200":{"description":"Attachments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchema"},"example":{"attachments":[{"id":"00000000-0000-4000-8000-000000000000","fileName":"string","fileSize":1,"mimeType":"string","url":"string"}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Access denied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/messages/:id/attachments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"post":{"operationId":"messages_post_messages_id_attachments","summary":"Link attachments to draft message","description":"Requires features: messages.attach_files","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostRequestBodyContentApplicationJsonSchema"},"example":{"attachmentIds":["00000000-0000-4000-8000-000000000000"]}}}},"responses":{"200":{"description":"Attachments linked","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Only draft messages can be edited","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/messages/:id/attachments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"attachmentIds\\\": [\n    \\\"00000000-0000-4000-8000-000000000000\\\"\n  ]\n}\""}],"x-require-features":["messages.attach_files"],"x-require-auth":true},"delete":{"operationId":"messages_delete_messages_id_attachments","summary":"Unlink attachments from draft message","description":"Requires features: messages.attach_files","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Attachments unlinked","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Only draft messages can be edited","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/messages/:id/attachments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-features":["messages.attach_files"],"x-require-auth":true}},"/messages/{id}/confirmation":{"get":{"operationId":"messages_get_messages_id_confirmation","summary":"Read message confirmation status","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetParameters0Schema"}}],"responses":{"200":{"description":"Confirmation status","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchema"},"example":{"messageId":"00000000-0000-4000-8000-000000000000","confirmed":true,"confirmedAt":null,"confirmedByUserId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Access denied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/messages/:id/confirmation\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/messages/{id}/conversation/archive":{"put":{"operationId":"messages_put_messages_id_conversation_archive","summary":"Archive conversation for current actor","description":"Requires features: messages.view","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchivePutParameters0Schema"}}],"responses":{"200":{"description":"Conversation archived","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchivePutResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"affectedCount":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchivePutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchivePutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchivePutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/messages/:id/conversation/archive\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.view"],"x-require-auth":true},"delete":{"operationId":"messages_delete_messages_id_conversation_archive","summary":"Unarchive conversation for current actor","description":"Requires features: messages.view","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchiveDeleteParameters0Schema"}}],"responses":{"200":{"description":"Conversation unarchived","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchiveDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"affectedCount":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchiveDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchiveDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchiveDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/messages/:id/conversation/archive\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.view"],"x-require-auth":true}},"/messages/{id}/conversation/read":{"put":{"operationId":"messages_put_messages_id_conversation_read","summary":"Mark entire conversation as read for current actor","description":"Requires features: messages.view","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadPutParameters0Schema"}}],"responses":{"200":{"description":"Conversation marked read","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"affectedCount":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/messages/:id/conversation/read\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.view"],"x-require-auth":true},"delete":{"operationId":"messages_delete_messages_id_conversation_read","summary":"Mark entire conversation as unread for current actor","description":"Requires features: messages.view","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadDeleteParameters0Schema"}}],"responses":{"200":{"description":"Conversation marked unread","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"affectedCount":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/messages/:id/conversation/read\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.view"],"x-require-auth":true}},"/messages/{id}/conversation":{"delete":{"operationId":"messages_delete_messages_id_conversation","summary":"Delete conversation for current actor","description":"Requires features: messages.view","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationDeleteParameters0Schema"}}],"responses":{"200":{"description":"Conversation deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"affectedCount":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/messages/:id/conversation\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.view"],"x-require-auth":true}},"/messages/{id}/forward-preview":{"get":{"operationId":"messages_get_messages_id_forward_preview","summary":"Get forward preview for a message","description":"Requires features: messages.compose","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetParameters0Schema"}}],"responses":{"200":{"description":"Forward preview generated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses200ContentApplicationJsonSchema"},"example":{"subject":"string","body":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"413":{"description":"Forward body exceeds maximum length","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses413ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/messages/:id/forward-preview\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.compose"],"x-require-auth":true}},"/messages/{id}/forward":{"post":{"operationId":"messages_post_messages_id_forward","summary":"Forward a message and optionally include attachments from the forwarded conversation slice","description":"Requires features: messages.compose","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchema"},"example":{"recipients":[{"userId":"00000000-0000-4000-8000-000000000000","type":"to"}],"includeAttachments":true,"sendViaEmail":false}}}},"responses":{"201":{"description":"Message forwarded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Forward not allowed for message type","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostResponses409ContentApplicationJsonSchema"}}}},"413":{"description":"Forward body exceeds maximum length","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostResponses413ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/messages/:id/forward\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"recipients\\\": [\n    {\n      \\\"userId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"type\\\": \\\"to\\\"\n    }\n  ],\n  \\\"includeAttachments\\\": true,\n  \\\"sendViaEmail\\\": false\n}\""}],"x-require-features":["messages.compose"],"x-require-auth":true}},"/messages/{id}/read":{"put":{"operationId":"messages_put_messages_id_read","summary":"Mark message as read","description":"Requires features: messages.view","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutParameters0Schema"}}],"responses":{"200":{"description":"Message marked read","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/messages/:id/read\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.view"],"x-require-auth":true},"delete":{"operationId":"messages_delete_messages_id_read","summary":"Mark message as unread","description":"Requires features: messages.view","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteParameters0Schema"}}],"responses":{"200":{"description":"Message marked unread","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/messages/:id/read\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.view"],"x-require-auth":true}},"/messages/{id}/reply":{"post":{"operationId":"messages_post_messages_id_reply","summary":"Reply to message","description":"Requires features: messages.compose","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchema"},"example":{"body":"string","bodyFormat":"text","replyAll":false,"sendViaEmail":false}}}},"responses":{"201":{"description":"Reply created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"No recipients available for reply","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/messages/:id/reply\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"body\\\": \\\"string\\\",\n  \\\"bodyFormat\\\": \\\"text\\\",\n  \\\"replyAll\\\": false,\n  \\\"sendViaEmail\\\": false\n}\""}],"x-require-features":["messages.compose"],"x-require-auth":true}},"/messages/{id}":{"get":{"operationId":"messages_get_messages_id","summary":"Get message detail","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdGetParameters0Schema"}}],"responses":{"200":{"description":"Message detail with actor-visible thread items only","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","updatedAt":null,"type":"string","isDraft":true,"canEditDraft":true,"canArchive":true,"isArchived":true,"visibility":null,"sourceEntityType":null,"sourceEntityId":null,"externalEmail":null,"externalName":null,"typeDefinition":{"labelKey":"string","icon":"string","color":null,"allowReply":true,"allowForward":true,"ui":null},"threadId":null,"parentMessageId":null,"senderUserId":"00000000-0000-4000-8000-000000000000","senderName":null,"senderEmail":null,"subject":"string","body":"string","bodyFormat":"text","priority":"string","sentAt":null,"actionData":null,"actionTaken":null,"actionTakenAt":null,"actionTakenByUserId":null,"recipients":[{"userId":"00000000-0000-4000-8000-000000000000","type":"to","status":"string","readAt":null}],"objects":[{"id":"00000000-0000-4000-8000-000000000000","entityModule":"string","entityType":"string","entityId":"00000000-0000-4000-8000-000000000000","actionRequired":true,"actionType":null,"actionLabel":null,"snapshot":null,"preview":null}],"thread":[{"id":"00000000-0000-4000-8000-000000000000","senderUserId":"00000000-0000-4000-8000-000000000000","senderName":null,"senderEmail":null,"body":"string","sentAt":null}],"isRead":true,"conversationArchived":true,"conversationAllUnread":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Access denied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/messages/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true},"patch":{"operationId":"messages_patch_messages_id","summary":"Update draft message","description":"Requires features: messages.compose","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchema"},"example":{"visibility":null}}}},"responses":{"200":{"description":"Draft updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Only drafts can be edited, or the draft was modified concurrently (optimistic lock conflict)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://ltscanada-erp.northbound.run/api/messages/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"visibility\\\": null\n}\""}],"x-require-features":["messages.compose"],"x-require-auth":true},"delete":{"operationId":"messages_delete_messages_id","summary":"Delete message for current sender/recipient context","description":"Requires features: messages.view","tags":["Messages"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteParameters0Schema"}}],"responses":{"200":{"description":"Message deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Message not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Message was modified concurrently (optimistic lock conflict)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/messages/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["messages.view"],"x-require-auth":true}},"/messages/token/{token}":{"get":{"operationId":"messages_get_messages_token_token","summary":"Access message via token","tags":["Messages"],"parameters":[{"name":"token","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetParameters0Schema"}}],"responses":{"200":{"description":"Message detail via token","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","type":"string","subject":"string","body":"string","bodyFormat":"text","priority":"low","senderUserId":"00000000-0000-4000-8000-000000000000","sentAt":null,"actionData":null,"actionTaken":null,"actionTakenAt":null,"actionTakenByUserId":null,"objects":[{"id":"00000000-0000-4000-8000-000000000000","entityModule":"string","entityType":"string","entityId":"00000000-0000-4000-8000-000000000000","actionRequired":true,"actionType":null,"actionLabel":null,"snapshot":null}],"requiresAuth":true,"recipientUserId":"00000000-0000-4000-8000-000000000000"}}}},"404":{"description":"Invalid or expired link","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Token usage exceeded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses409ContentApplicationJsonSchema"}}}},"410":{"description":"Token expired","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses410ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/messages/token/:token\" \\\n  -H \"Accept: application/json\""}]}},"/communication_channels/channels":{"get":{"operationId":"communication_channels_get_communication_channels_channels","summary":"List communication channels for the current tenant","description":"Requires features: communication_channels.view","tags":["CommunicationChannels"],"parameters":[],"responses":{"200":{"description":"Channel list (paginated)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/communication_channels/channels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.view"],"x-require-auth":true}},"/communication_channels/me/channels":{"get":{"operationId":"communication_channels_get_communication_channels_me_channels","summary":"List the current user's connected channels","description":"Requires features: communication_channels.connect_user_channel","tags":["CommunicationChannels"],"parameters":[],"responses":{"200":{"description":"List of user-owned channels","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMeChannelsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMeChannelsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMeChannelsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/communication_channels/me/channels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.connect_user_channel"],"x-require-auth":true}},"/communication_channels/channels/connect/credentials":{"post":{"operationId":"communication_channels_post_communication_channels_channels_connect_credentials","summary":"Connect a credential-based per-user channel (IMAP/SMTP)","description":"Requires features: communication_channels.connect_user_channel","tags":["CommunicationChannels"],"parameters":[],"responses":{"201":{"description":"Channel connected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Unknown provider","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Mailbox already connected via another provider","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses409ContentApplicationJsonSchema"}}}},"422":{"description":"Invalid body or credential validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses422ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/channels/connect/credentials\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.connect_user_channel"],"x-require-auth":true}},"/communication_channels/send-as-user":{"post":{"operationId":"communication_channels_post_communication_channels_send_as_user","summary":"Send a message through the current user's own channel","description":"Requires features: communication_channels.manage","tags":["CommunicationChannels"],"parameters":[],"responses":{"202":{"description":"Message persisted; outbound delivery enqueued","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsSendAsUserPostResponses202ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsSendAsUserPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsSendAsUserPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Channel not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsSendAsUserPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Channel in a non-deliverable transitional status","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsSendAsUserPostResponses409ContentApplicationJsonSchema"}}}},"422":{"description":"Invalid body, or channel requires_reauth / disconnected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsSendAsUserPostResponses422ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/send-as-user\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.manage"],"x-require-auth":true}},"/communication_channels/test-seed":{"post":{"operationId":"communication_channels_post_communication_channels_test_seed","summary":"Test-only: seed a connected channel or emit an inbound message (env-gated)","description":"Requires features: communication_channels.connect_user_channel","tags":["CommunicationChannels"],"parameters":[],"responses":{"201":{"description":"Channel seeded / inbound message emitted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsTestSeedPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsTestSeedPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsTestSeedPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Test channel seeding disabled (production default)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsTestSeedPostResponses404ContentApplicationJsonSchema"}}}},"422":{"description":"Invalid request body","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsTestSeedPostResponses422ContentApplicationJsonSchema"}}}},"500":{"description":"Seed failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsTestSeedPostResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/test-seed\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.connect_user_channel"],"x-require-auth":true}},"/communication_channels/webhooks/gmail":{"post":{"operationId":"communication_channels_post_communication_channels_webhooks_gmail","summary":"Gmail Pub/Sub push notification webhook (Spec C § Phase C2)","tags":["CommunicationChannels"],"parameters":[],"responses":{"204":{"description":"Notification verified + history-sync job enqueued"},"400":{"description":"Body not a valid Pub/Sub envelope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsWebhooksGmailPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Invalid JWT or email claim","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsWebhooksGmailPostResponses401ContentApplicationJsonSchema"}}}},"403":{"description":"Wrong audience","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsWebhooksGmailPostResponses403ContentApplicationJsonSchema"}}}},"503":{"description":"Webhook not configured / Google certs unreachable","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsWebhooksGmailPostResponses503ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/webhooks/gmail\" \\\n  -H \"Accept: application/json\""}]}},"/communication_channels/channels/{id}":{"delete":{"operationId":"communication_channels_delete_communication_channels_channels_id","summary":"Delete (soft-delete) a communication channel","description":"Requires features: communication_channels.connect_user_channel","tags":["CommunicationChannels"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdDeleteParameters0Schema"}}],"responses":{"204":{"description":"Channel deleted"},"400":{"description":"Invalid channel id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdDeleteResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Channel not found or not owned by current user","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdDeleteResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/communication_channels/channels/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.connect_user_channel"],"x-require-auth":true},"get":{"operationId":"communication_channels_get_communication_channels_channels_id","summary":"Get a single communication channel by id","description":"Requires features: communication_channels.view","tags":["CommunicationChannels"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Channel detail","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid channel id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Channel not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/communication_channels/channels/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.view"],"x-require-auth":true}},"/communication_channels/messages/{messageId}/reactions/{reactionId}":{"delete":{"operationId":"communication_channels_delete_communication_channels_messages_messageId_reactions_reactionId","summary":"Remove a reaction from a channel-linked message","description":"Requires features: communication_channels.react","tags":["CommunicationChannels"],"parameters":[{"name":"messageId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteParameters0Schema"}},{"name":"reactionId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteParameters1Schema"}}],"responses":{"204":{"description":"Reaction removed"},"400":{"description":"Invalid params","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Reaction not found or not owned by current user","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Message not channel-linked","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses409ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/communication_channels/messages/:messageId/reactions/:reactionId\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.react"],"x-require-auth":true}},"/communication_channels/channels/{id}/health":{"get":{"operationId":"communication_channels_get_communication_channels_channels_id_health","summary":"Snapshot of channel delivery health (last 24h)","description":"Requires features: communication_channels.view","tags":["CommunicationChannels"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdHealthGetParameters0Schema"}}],"responses":{"200":{"description":"Health snapshot","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdHealthGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid channel id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdHealthGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdHealthGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdHealthGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Channel not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdHealthGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/communication_channels/channels/:id/health\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.view"],"x-require-auth":true}},"/communication_channels/oauth/{provider}/callback":{"get":{"operationId":"communication_channels_get_communication_channels_oauth_provider_callback","summary":"OAuth callback — exchange code, persist credentials, create per-user channel","tags":["CommunicationChannels"],"parameters":[{"name":"provider","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderCallbackGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderCallbackGetResponses200ContentApplicationJsonSchema"}}}},"302":{"description":"Redirect back to returnUrl with flash query params","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderCallbackGetResponses302ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderCallbackGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/communication_channels/oauth/:provider/callback\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/communication_channels/channels/{id}/import-history":{"post":{"operationId":"communication_channels_post_communication_channels_channels_id_import_history","summary":"Queue a backlog import for a channel (Spec B § Phase B6)","description":"Requires features: communication_channels.connect_user_channel","tags":["CommunicationChannels"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchema"},"example":{"sinceDays":30,"maxMessages":1000}}}},"responses":{"202":{"description":"Import job queued; returns { progressJobId }","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses202ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid channel id or unsupported provider","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Channel not found / not accessible","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Channel is not connected (requires reauth / error)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses409ContentApplicationJsonSchema"}}}},"429":{"description":"Another import is already running for this channel","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses429ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/channels/:id/import-history\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"sinceDays\\\": 30,\n  \\\"maxMessages\\\": 1000\n}\""}],"x-require-features":["communication_channels.connect_user_channel"],"x-require-auth":true}},"/communication_channels/channels/{id}/poll-now":{"post":{"operationId":"communication_channels_post_communication_channels_channels_id_poll_now","summary":"Manually trigger a poll cycle for a channel (demo / operator override)","description":"Requires features: communication_channels.connect_user_channel","tags":["CommunicationChannels"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPollNowPostParameters0Schema"}}],"responses":{"202":{"description":"Poll job enqueued","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPollNowPostResponses202ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid channel id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPollNowPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPollNowPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPollNowPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Channel not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPollNowPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Channel disabled or not connected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPollNowPostResponses409ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/channels/:id/poll-now\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.connect_user_channel"],"x-require-auth":true}},"/communication_channels/channels/{id}/push/register":{"post":{"operationId":"communication_channels_post_communication_channels_channels_id_push_register","summary":"Force-register push delivery for a channel (Spec C § Phase C5)","description":"Requires features: communication_channels.connect_user_channel","tags":["CommunicationChannels"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPushRegisterPostParameters0Schema"}}],"responses":{"202":{"description":"Push registration attempted; check result.pushStatus","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses202ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid id or unsupported provider","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Channel not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Provider does not support push (IMAP)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses409ContentApplicationJsonSchema"}}}},"502":{"description":"Provider returned an error during registration","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses502ContentApplicationJsonSchema"}}}},"503":{"description":"Webhook base URL or Pub/Sub topic not configured","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses503ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/channels/:id/push/register\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.connect_user_channel"],"x-require-auth":true}},"/communication_channels/channels/{id}/set-primary":{"post":{"operationId":"communication_channels_post_communication_channels_channels_id_set_primary","summary":"Mark a per-user channel as primary","description":"Requires features: communication_channels.connect_user_channel","tags":["CommunicationChannels"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdSetPrimaryPostParameters0Schema"}}],"responses":{"200":{"description":"Channel set as primary (or already primary)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid channel id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Channel not found or not owned by current user","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/channels/:id/set-primary\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.connect_user_channel"],"x-require-auth":true}},"/communication_channels/channels/{id}/test-send":{"post":{"operationId":"communication_channels_post_communication_channels_channels_id_test_send","summary":"Diagnostic — send a test message through the channel without persisting","description":"Requires features: communication_channels.connect_user_channel","tags":["CommunicationChannels"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdTestSendPostParameters0Schema"}}],"responses":{"200":{"description":"Test send result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdTestSendPostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid channel id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdTestSendPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdTestSendPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdTestSendPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Channel or adapter not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdTestSendPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Channel not connected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdTestSendPostResponses409ContentApplicationJsonSchema"}}}},"422":{"description":"Invalid request body","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdTestSendPostResponses422ContentApplicationJsonSchema"}}}},"502":{"description":"Provider error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdTestSendPostResponses502ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/channels/:id/test-send\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.connect_user_channel"],"x-require-auth":true}},"/communication_channels/messages/{messageId}/reactions":{"post":{"operationId":"communication_channels_post_communication_channels_messages_messageId_reactions","summary":"Add a reaction to a channel-linked message","description":"Requires features: communication_channels.react","tags":["CommunicationChannels"],"parameters":[{"name":"messageId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsPostParameters0Schema"}}],"responses":{"201":{"description":"Reaction added","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses201ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid messageId","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Message not channel-linked or duplicate reaction","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses409ContentApplicationJsonSchema"}}}},"422":{"description":"Invalid request body","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses422ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/messages/:messageId/reactions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.react"],"x-require-auth":true}},"/communication_channels/oauth/{provider}/initiate":{"post":{"operationId":"communication_channels_post_communication_channels_oauth_provider_initiate","summary":"Start a per-user channel OAuth flow","description":"Requires features: communication_channels.connect_user_channel","tags":["CommunicationChannels"],"parameters":[{"name":"provider","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderInitiatePostParameters0Schema"}}],"responses":{"200":{"description":"Authorize URL + state cookie set","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderInitiatePostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid provider or unsupported (no OAuth)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderInitiatePostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderInitiatePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderInitiatePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"422":{"description":"Invalid request body","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderInitiatePostResponses422ContentApplicationJsonSchema"}}}},"502":{"description":"Adapter failed to build authorize URL","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderInitiatePostResponses502ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/oauth/:provider/initiate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.connect_user_channel"],"x-require-auth":true}},"/communication_channels/webhook/{provider}":{"post":{"operationId":"communication_channels_post_communication_channels_webhook_provider","summary":"Process an inbound channel webhook (Slack, WhatsApp, Email, ...)","tags":["CommunicationChannels"],"parameters":[{"name":"provider","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsWebhookProviderPostParameters0Schema"}}],"responses":{"202":{"description":"Webhook accepted for async processing","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsWebhookProviderPostResponses202ContentApplicationJsonSchema"}}}},"401":{"description":"Signature verification failed against every candidate channel","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsWebhookProviderPostResponses401ContentApplicationJsonSchema"}}}},"404":{"description":"Unknown provider","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsWebhookProviderPostResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/communication_channels/webhook/:provider\" \\\n  -H \"Accept: application/json\""}]}},"/communication_channels/threads/{threadId}/assign":{"put":{"operationId":"communication_channels_put_communication_channels_threads_threadId_assign","summary":"Reassign a channel-linked conversation to a different owner","description":"Requires features: communication_channels.assign","tags":["CommunicationChannels"],"parameters":[{"name":"threadId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsThreadsThreadIdAssignPutParameters0Schema"}}],"responses":{"200":{"description":"Conversation reassigned (or unchanged)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid threadId","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Conversation not channel-linked","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses404ContentApplicationJsonSchema"}}}},"422":{"description":"Invalid request body","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses422ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/communication_channels/threads/:threadId/assign\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["communication_channels.assign"],"x-require-auth":true}},"/attachments/library":{"get":{"operationId":"attachments_get_attachments_library","summary":"List attachments","description":"Returns paginated list of attachments with optional filtering by search term, partition, and tags. Includes available tags and partitions.\n\nRequires features: attachments.view","tags":["Attachments"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters0Schema"},"example":1,"description":"Page number for pagination"},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters1Schema"},"example":1,"description":"Number of items per page (max 100)"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters2Schema"},"example":"string","description":"Search by file name (case-insensitive)"},{"name":"partition","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters3Schema"},"example":"string","description":"Filter by partition code"},{"name":"tags","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters4Schema"},"example":"string","description":"Filter by tags (comma-separated)"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters5Schema"},"example":"fileName","description":"Field to sort by"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetParameters6Schema"},"example":"asc","description":"Sort direction"}],"responses":{"200":{"description":"Attachments list with pagination and metadata","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","fileName":"string","fileSize":1,"mimeType":"string","partitionCode":"string","partitionTitle":null,"url":null,"createdAt":"string","tags":["string"],"assignments":[],"content":null}],"total":1,"page":1,"pageSize":1,"totalPages":1,"availableTags":["string"],"partitions":[{"code":"string","title":"string","description":null,"isPublic":true}]}}}},"400":{"description":"Invalid query parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/attachments/library?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["attachments.view"],"x-require-auth":true}},"/attachments/partitions":{"get":{"operationId":"attachments_get_attachments_partitions","summary":"List all attachment partitions","description":"Returns all configured attachment partitions with storage settings, OCR configuration, and access control settings.\n\nRequires features: attachments.manage","tags":["Attachments"],"parameters":[],"responses":{"200":{"description":"List of partitions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","title":"string","description":null,"isPublic":true,"requiresOcr":true,"ocrModel":null,"configJson":null,"createdAt":null,"updatedAt":null,"envKey":"string"}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/attachments/partitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["attachments.manage"],"x-require-auth":true},"post":{"operationId":"attachments_post_attachments_partitions","summary":"Create new partition","description":"Creates a new attachment partition with specified storage and OCR settings. Requires unique partition code.\n\nRequires features: attachments.manage","tags":["Attachments"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","title":"string","description":null,"ocrModel":null,"storageDriver":"local","configJson":null}}}},"responses":{"201":{"description":"Partition created successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchema"},"example":{"item":{"id":"00000000-0000-4000-8000-000000000000","code":"string","title":"string","description":null,"isPublic":true,"requiresOcr":true,"ocrModel":null,"configJson":null,"createdAt":null,"updatedAt":null,"envKey":"string"}}}}},"400":{"description":"Invalid payload or partition code","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Partition code already exists","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/attachments/partitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"title\\\": \\\"string\\\",\n  \\\"description\\\": null,\n  \\\"ocrModel\\\": null,\n  \\\"storageDriver\\\": \\\"local\\\",\n  \\\"configJson\\\": null\n}\""}],"x-require-features":["attachments.manage"],"x-require-auth":true},"put":{"operationId":"attachments_put_attachments_partitions","summary":"Update partition","description":"Updates an existing partition. Partition code cannot be changed. Title, description, OCR settings, and access control can be modified.\n\nRequires features: attachments.manage","tags":["Attachments"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","title":"string","description":null,"ocrModel":null,"storageDriver":"local","configJson":null,"id":"00000000-0000-4000-8000-000000000000"}}}},"responses":{"200":{"description":"Partition updated successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchema"},"example":{"item":{"id":"00000000-0000-4000-8000-000000000000","code":"string","title":"string","description":null,"isPublic":true,"requiresOcr":true,"ocrModel":null,"configJson":null,"createdAt":null,"updatedAt":null,"envKey":"string"}}}}},"400":{"description":"Invalid payload or code change attempt","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Partition not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/attachments/partitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"title\\\": \\\"string\\\",\n  \\\"description\\\": null,\n  \\\"ocrModel\\\": null,\n  \\\"storageDriver\\\": \\\"local\\\",\n  \\\"configJson\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-features":["attachments.manage"],"x-require-auth":true},"delete":{"operationId":"attachments_delete_attachments_partitions","summary":"Delete partition","description":"Deletes a partition. Default partitions cannot be deleted. Partitions with existing attachments cannot be deleted.\n\nRequires features: attachments.manage","tags":["Attachments"],"parameters":[],"responses":{"200":{"description":"Partition deleted successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid ID or default partition deletion attempt","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Partition not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Partition in use","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/attachments/partitions\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["attachments.manage"],"x-require-auth":true}},"/attachments":{"get":{"operationId":"attachments_get_attachments","summary":"List attachments for a record","description":"Returns uploaded attachments for the given entity record, ordered by newest first.\n\nRequires features: attachments.view","tags":["Attachments"],"parameters":[{"name":"entityId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetParameters0Schema"},"example":"string","description":"Entity identifier that owns the attachments"},{"name":"recordId","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetParameters1Schema"},"example":"string","description":"Record identifier within the entity"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetParameters3Schema"},"example":1}],"responses":{"200":{"description":"Attachments found for the record","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","url":"string","fileName":"string","fileSize":1,"createdAt":"string","mimeType":null,"content":null}]}}}},"400":{"description":"Missing entity or record identifiers","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/attachments?entityId=string&recordId=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["attachments.view"],"x-require-auth":true},"post":{"operationId":"attachments_post_attachments","summary":"Upload attachment","description":"Uploads a new attachment using multipart form-data and stores metadata for later retrieval.\n\nRequires features: attachments.manage","tags":["Attachments"],"parameters":[],"requestBody":{"required":true,"content":{"multipart/form-data":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchema"},"example":{"entityId":"string","recordId":"string","file":"string"}}}},"responses":{"200":{"description":"Attachment stored successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"item":{"id":"string","url":"string","fileName":"string","fileSize":1,"content":null}}}}},"400":{"description":"Payload validation error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/attachments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: multipart/form-data\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"recordId\\\": \\\"string\\\",\n  \\\"file\\\": \\\"string\\\"\n}\""}],"x-require-features":["attachments.manage"],"x-require-auth":true},"delete":{"operationId":"attachments_delete_attachments","summary":"Delete attachment","description":"Removes an uploaded attachment and deletes the stored asset.\n\nRequires features: attachments.manage","tags":["Attachments"],"parameters":[{"name":"id","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Attachment deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Missing attachment identifier","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Attachment not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/attachments?id=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["attachments.manage"],"x-require-auth":true}},"/attachments/transfer":{"post":{"operationId":"attachments_post_attachments_transfer","summary":"Transfer attachments to different record","description":"Transfers one or more attachments from one record to another within the same entity type. Updates attachment assignments and metadata to reflect the new record.\n\nRequires features: attachments.manage","tags":["Attachments"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchema"},"example":{"entityId":"string","attachmentIds":["00000000-0000-4000-8000-000000000000"],"toRecordId":"string"}}}},"responses":{"200":{"description":"Attachments transferred successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"updated":1}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Attachments not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Attachment model missing","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/attachments/transfer\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entityId\\\": \\\"string\\\",\n  \\\"attachmentIds\\\": [\n    \\\"00000000-0000-4000-8000-000000000000\\\"\n  ],\n  \\\"toRecordId\\\": \\\"string\\\"\n}\""}],"x-require-features":["attachments.manage"],"x-require-auth":true}},"/attachments/file/{id}":{"get":{"operationId":"attachments_get_attachments_file_id","summary":"Download or serve attachment file","description":"Returns the raw file content for an attachment. Path parameter: {id} - Attachment UUID. Query parameter: ?download=1 - Force file download with Content-Disposition header. Access control is enforced based on partition settings.","tags":["Attachments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetParameters0Schema"}}],"responses":{"200":{"description":"File content with appropriate MIME type","content":{"application/json":{"schema":{}}}},"400":{"description":"Missing attachment ID","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized - authentication required for private partitions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden - insufficient permissions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Attachment or file not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Partition misconfigured","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/attachments/file/:id\" \\\n  -H \"Accept: application/json\""}]}},"/attachments/image/{id}/{slug}":{"get":{"operationId":"attachments_get_attachments_image_id_slug","summary":"Serve image with optional resizing","description":"Returns an image attachment with optional on-the-fly resizing and cropping. Resized images are cached for performance. Only works with image MIME types. Path parameter: {id} - Attachment UUID. Query parameters: ?width=N (1-4000 pixels), ?height=N (1-4000 pixels), ?cropType=cover|contain (resize behavior).","tags":["Attachments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetParameters0Schema"}},{"name":"slug","in":"path","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetParameters1Schema"}}],"responses":{"200":{"description":"Binary image content (Content-Type: image/jpeg, image/png, etc.)","content":{"application/json":{"schema":{}}}},"400":{"description":"Invalid parameters, missing ID, or non-image attachment","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized - authentication required for private partitions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Forbidden - insufficient permissions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Image not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Partition misconfigured or image rendering failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/attachments/image/:id/:slug\" \\\n  -H \"Accept: application/json\""}]}},"/attachments/library/{id}":{"get":{"operationId":"attachments_get_attachments_library_id","summary":"Get attachment details","description":"Returns complete details of an attachment including metadata, tags, assignments, and custom fields.\n\nRequires features: attachments.view","tags":["Attachments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetParameters0Schema"}}],"responses":{"200":{"description":"Attachment details","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchema"},"example":{"item":{"id":"00000000-0000-4000-8000-000000000000","fileName":"string","fileSize":1,"mimeType":"string","partitionCode":"string","partitionTitle":null,"tags":["string"],"assignments":[],"content":null,"customFields":null}}}}},"400":{"description":"Invalid attachment ID","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Attachment not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/attachments/library/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["attachments.view"],"x-require-auth":true},"patch":{"operationId":"attachments_patch_attachments_library_id","summary":"Update attachment metadata","description":"Updates attachment tags, assignments, and custom fields. Emits CRUD side effects for indexing and events.\n\nRequires features: attachments.manage","tags":["Attachments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Attachment updated successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid payload or attachment ID","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Attachment not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to save attributes","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://ltscanada-erp.northbound.run/api/attachments/library/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-features":["attachments.manage"],"x-require-auth":true},"delete":{"operationId":"attachments_delete_attachments_library_id","summary":"Delete attachment","description":"Permanently deletes an attachment file from storage and database. Emits CRUD side effects.\n\nRequires features: attachments.manage","tags":["Attachments"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteParameters0Schema"}}],"responses":{"200":{"description":"Attachment deleted successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Invalid attachment ID","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Attachment not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/attachments/library/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["attachments.manage"],"x-require-auth":true}},"/inbox_ops/emails":{"get":{"operationId":"inbox_ops_get_inbox_ops_emails","summary":"List received emails","description":"Processing log of all received emails\n\nRequires features: inbox_ops.log.view","tags":["InboxOps"],"parameters":[],"responses":{"200":{"description":"Paginated list of emails","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/inbox_ops/emails\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.log.view"],"x-require-auth":true}},"/inbox_ops/extract":{"post":{"operationId":"inbox_ops_post_inbox_ops_extract","summary":"Submit raw text for LLM extraction","description":"Creates an InboxEmail record from raw text and triggers the extraction pipeline. The extraction runs asynchronously.\n\nRequires features: inbox_ops.proposals.manage","tags":["InboxOps"],"parameters":[],"responses":{"200":{"description":"Extraction queued successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsExtractPostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid request body","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsExtractPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsExtractPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsExtractPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/inbox_ops/extract\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.manage"],"x-require-auth":true}},"/inbox_ops/proposals/counts":{"get":{"operationId":"inbox_ops_get_inbox_ops_proposals_counts","summary":"Get proposal status and category counts","description":"Returns counts by status and by category for tab badges and filter dropdowns\n\nRequires features: inbox_ops.proposals.view","tags":["InboxOps"],"parameters":[],"responses":{"200":{"description":"Status and category counts object","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsCountsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsCountsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsCountsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals/counts\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.view"],"x-require-auth":true}},"/inbox_ops/proposals":{"get":{"operationId":"inbox_ops_get_inbox_ops_proposals","summary":"List proposals","description":"List inbox proposals with optional status filter and pagination\n\nRequires features: inbox_ops.proposals.view","tags":["InboxOps"],"parameters":[],"responses":{"200":{"description":"Paginated list of proposals","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.view"],"x-require-auth":true}},"/inbox_ops/settings":{"get":{"operationId":"inbox_ops_get_inbox_ops_settings","summary":"Get tenant inbox configuration","description":"Returns the forwarding address and configuration for this tenant\n\nRequires features: inbox_ops.settings.manage","tags":["InboxOps"],"parameters":[],"responses":{"200":{"description":"Inbox settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsSettingsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsSettingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsSettingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/inbox_ops/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.settings.manage"],"x-require-auth":true},"patch":{"operationId":"inbox_ops_patch_inbox_ops_settings","summary":"Update tenant inbox configuration","description":"Updates working language and/or active status\n\nRequires features: inbox_ops.settings.manage","tags":["InboxOps"],"parameters":[],"responses":{"200":{"description":"Updated settings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsSettingsPatchResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsSettingsPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsSettingsPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Settings not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsSettingsPatchResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://ltscanada-erp.northbound.run/api/inbox_ops/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.settings.manage"],"x-require-auth":true}},"/inbox_ops/emails/{id}/reprocess":{"post":{"operationId":"inbox_ops_post_inbox_ops_emails_id_reprocess","summary":"Re-trigger LLM extraction on a failed or low-confidence email","description":"Requires features: inbox_ops.proposals.manage","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdReprocessPostParameters0Schema"}}],"responses":{"200":{"description":"Email queued for reprocessing","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdReprocessPostResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdReprocessPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdReprocessPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Email not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdReprocessPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Email is already processing or proposal cannot be superseded safely","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdReprocessPostResponses409ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/inbox_ops/emails/:id/reprocess\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.manage"],"x-require-auth":true}},"/inbox_ops/emails/{id}":{"get":{"operationId":"inbox_ops_get_inbox_ops_emails_id","summary":"Get email detail with parsed thread","description":"Requires features: inbox_ops.log.view","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Email detail","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Email not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/inbox_ops/emails/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.log.view"],"x-require-auth":true},"delete":{"operationId":"inbox_ops_delete_inbox_ops_emails_id","summary":"Soft-delete an inbox email","description":"Requires features: inbox_ops.proposals.manage","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdDeleteParameters0Schema"}}],"responses":{"200":{"description":"Email deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdDeleteResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Email not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdDeleteResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/inbox_ops/emails/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.manage"],"x-require-auth":true}},"/inbox_ops/proposals/{id}/accept-all":{"post":{"operationId":"inbox_ops_post_inbox_ops_proposals_id_accept_all","summary":"Accept and execute all pending actions in a proposal","description":"Requires features: inbox_ops.proposals.manage","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdAcceptAllPostParameters0Schema"}}],"responses":{"200":{"description":"All actions processed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdAcceptAllPostResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdAcceptAllPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdAcceptAllPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Proposal not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdAcceptAllPostResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals/:id/accept-all\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.manage"],"x-require-auth":true}},"/inbox_ops/proposals/{id}/actions/{actionId}/accept":{"post":{"operationId":"inbox_ops_post_inbox_ops_proposals_id_actions_actionId_accept","summary":"Accept and execute a proposal action","description":"Executes the action and creates the entity in the target module. Returns 409 if already processed.\n\nRequires features: inbox_ops.proposals.manage","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostParameters0Schema"}},{"name":"actionId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostParameters1Schema"}}],"responses":{"200":{"description":"Action executed successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Action not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Action already processed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses409ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals/:id/actions/:actionId/accept\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.manage"],"x-require-auth":true}},"/inbox_ops/proposals/{id}/actions/{actionId}/complete":{"patch":{"operationId":"inbox_ops_patch_inbox_ops_proposals_id_actions_actionId_complete","summary":"Mark an action as completed with an externally-created entity","description":"Used when an action is fulfilled through the normal sales form instead of the execution engine. Updates the action status without running the execution engine.\n\nRequires features: inbox_ops.proposals.manage","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchParameters0Schema"}},{"name":"actionId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchParameters1Schema"}}],"responses":{"200":{"description":"Action marked as completed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid body","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Action not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Action already processed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses409ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals/:id/actions/:actionId/complete\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.manage"],"x-require-auth":true}},"/inbox_ops/proposals/{id}/actions/{actionId}/reject":{"post":{"operationId":"inbox_ops_post_inbox_ops_proposals_id_actions_actionId_reject","summary":"Reject a proposal action","description":"Requires features: inbox_ops.proposals.manage","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdRejectPostParameters0Schema"}},{"name":"actionId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdRejectPostParameters1Schema"}}],"responses":{"200":{"description":"Action rejected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Action not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Action already processed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses409ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals/:id/actions/:actionId/reject\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.manage"],"x-require-auth":true}},"/inbox_ops/proposals/{id}/actions/{actionId}":{"patch":{"operationId":"inbox_ops_patch_inbox_ops_proposals_id_actions_actionId","summary":"Edit action payload before accepting","description":"Requires features: inbox_ops.proposals.manage","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdPatchParameters0Schema"}},{"name":"actionId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdPatchParameters1Schema"}}],"responses":{"200":{"description":"Action updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Action not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Action already processed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses409ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals/:id/actions/:actionId\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.manage"],"x-require-auth":true}},"/inbox_ops/proposals/{id}/categorize":{"post":{"operationId":"inbox_ops_post_inbox_ops_proposals_id_categorize","summary":"Set or change the category of a proposal","description":"Assigns a category to a proposal. Returns the new and previous category for undo support.\n\nRequires features: inbox_ops.proposals.manage","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdCategorizePostParameters0Schema"}}],"responses":{"200":{"description":"Category updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdCategorizePostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid category value","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdCategorizePostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdCategorizePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdCategorizePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Proposal not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdCategorizePostResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals/:id/categorize\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.manage"],"x-require-auth":true}},"/inbox_ops/proposals/{id}/reject":{"post":{"operationId":"inbox_ops_post_inbox_ops_proposals_id_reject","summary":"Reject entire proposal (all pending actions)","description":"Requires features: inbox_ops.proposals.manage","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRejectPostParameters0Schema"}}],"responses":{"200":{"description":"Proposal rejected","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRejectPostResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRejectPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRejectPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Proposal not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRejectPostResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals/:id/reject\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.manage"],"x-require-auth":true}},"/inbox_ops/proposals/{id}/replies/{replyId}/send":{"post":{"operationId":"inbox_ops_post_inbox_ops_proposals_id_replies_replyId_send","summary":"Send a draft reply email and register it in messages when available","description":"Sends the draft_reply action payload via the configured email provider. When the messages module is available, also records the sent reply as an internal message record. Sets In-Reply-To and References headers for threading.\n\nRequires features: inbox_ops.replies.send","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostParameters0Schema"}},{"name":"replyId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostParameters1Schema"}}],"responses":{"200":{"description":"Reply sent successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Missing required payload fields","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Reply action not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Action in invalid state for sending, or a send is already in progress / completed for this reply","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses409ContentApplicationJsonSchema"}}}},"502":{"description":"Email delivery failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses502ContentApplicationJsonSchema"}}}},"503":{"description":"Email service not configured or disabled","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses503ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals/:id/replies/:replyId/send\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.replies.send"],"x-require-auth":true}},"/inbox_ops/proposals/{id}":{"get":{"operationId":"inbox_ops_get_inbox_ops_proposals_id","summary":"Get proposal detail","description":"Returns proposal with actions, discrepancies, and source email\n\nRequires features: inbox_ops.proposals.view","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Full proposal detail","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Proposal not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.view"],"x-require-auth":true}},"/inbox_ops/proposals/{id}/translate":{"post":{"operationId":"inbox_ops_post_inbox_ops_proposals_id_translate","summary":"Translate proposal content","description":"Translates the proposal summary and action descriptions to the target locale. Results are cached.\n\nRequires features: inbox_ops.proposals.manage","tags":["InboxOps"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdTranslatePostParameters0Schema"}}],"responses":{"200":{"description":"Translation result","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdTranslatePostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid target locale or same language","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdTranslatePostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdTranslatePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdTranslatePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Proposal not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdTranslatePostResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/inbox_ops/proposals/:id/translate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["inbox_ops.proposals.manage"],"x-require-auth":true}},"/inbox_ops/webhook/inbound":{"post":{"operationId":"inbox_ops_post_inbox_ops_webhook_inbound","summary":"Receive forwarded email from provider webhook","description":"Public endpoint — validated by provider HMAC signature or Resend/Svix signature. Rate limited per tenant.","tags":["InboxOps"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchema"},"example":{}}}},"responses":{"200":{"description":"Email received and queued for processing","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid payload or signature","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostResponses400ContentApplicationJsonSchema"}}}},"413":{"description":"Payload too large","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostResponses413ContentApplicationJsonSchema"}}}},"429":{"description":"Rate limit exceeded","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostResponses429ContentApplicationJsonSchema"}}}},"503":{"description":"Webhook secret not configured","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostResponses503ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/inbox_ops/webhook/inbound\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}]}},"/channel_cloudflare_email/delivery-events":{"post":{"operationId":"channel_cloudflare_email_post_channel_cloudflare_email_delivery_events","summary":"Apply a delivery/bounce/complaint event to the originating outbound message link","tags":["ChannelCloudflareEmail"],"parameters":[],"responses":{"200":{"description":"Event applied to a matching outbound link","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsChannelCloudflareEmailDeliveryEventsPostResponses200ContentApplicationJsonSchema"}}}},"202":{"description":"Verified, but no outbound link matched — not retried","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsChannelCloudflareEmailDeliveryEventsPostResponses202ContentApplicationJsonSchema"}}}},"400":{"description":"Verified but structurally invalid envelope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsChannelCloudflareEmailDeliveryEventsPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Signature verification failed against every channel","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsChannelCloudflareEmailDeliveryEventsPostResponses401ContentApplicationJsonSchema"}}}},"413":{"description":"Body exceeds the signing limit","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsChannelCloudflareEmailDeliveryEventsPostResponses413ContentApplicationJsonSchema"}}}},"500":{"description":"Processing failure — safe to retry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsChannelCloudflareEmailDeliveryEventsPostResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/channel_cloudflare_email/delivery-events\" \\\n  -H \"Accept: application/json\""}]}},"/scheduler/jobs":{"get":{"operationId":"scheduler_get_scheduler_jobs","summary":"List scheduledjobs","description":"Returns a paginated collection of scheduledjobs scoped to the authenticated organization.\n\nRequires features: scheduler.jobs.view","tags":["Scheduler"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetParameters1Schema"},"example":1},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetParameters3Schema"},"example":"string"},{"name":"scopeType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetParameters4Schema"},"example":"system"},{"name":"isEnabled","in":"query","required":true,"schema":{}},{"name":"sourceType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetParameters6Schema"},"example":"user"},{"name":"sourceModule","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetParameters7Schema"},"example":"string"},{"name":"sort","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetParameters8Schema"},"example":"string"},{"name":"order","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetParameters9Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetParameters10Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated scheduledjobs","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","description":null,"scopeType":"system","organizationId":null,"tenantId":null,"scheduleType":"cron","scheduleValue":"string","timezone":"string","targetType":"queue","targetQueue":null,"targetCommand":null,"targetPayload":null,"requireFeature":null,"isEnabled":true,"lastRunAt":null,"nextRunAt":null,"sourceType":"user","sourceModule":null,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/scheduler/jobs?page=1&pageSize=20\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["scheduler.jobs.view"],"x-require-auth":true},"post":{"operationId":"scheduler_post_scheduler_jobs","summary":"Create scheduledjob","description":"Creates a new scheduled job with cron or interval-based scheduling.\n\nRequires features: scheduler.jobs.manage","tags":["Scheduler"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","description":null,"scopeType":"system","organizationId":null,"tenantId":null,"scheduleType":"cron","scheduleValue":"string","timezone":"UTC","targetType":"queue","targetQueue":null,"targetCommand":null,"targetPayload":null,"requireFeature":null,"isEnabled":true,"sourceType":"user","sourceModule":null}}},"description":"Creates a new scheduled job with cron or interval-based scheduling."},"responses":{"201":{"description":"ScheduledJob created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/scheduler/jobs\" \\\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  \\\"scopeType\\\": \\\"system\\\",\n  \\\"organizationId\\\": null,\n  \\\"tenantId\\\": null,\n  \\\"scheduleType\\\": \\\"cron\\\",\n  \\\"scheduleValue\\\": \\\"string\\\",\n  \\\"timezone\\\": \\\"UTC\\\",\n  \\\"targetType\\\": \\\"queue\\\",\n  \\\"targetQueue\\\": null,\n  \\\"targetCommand\\\": null,\n  \\\"targetPayload\\\": null,\n  \\\"requireFeature\\\": null,\n  \\\"isEnabled\\\": true,\n  \\\"sourceType\\\": \\\"user\\\",\n  \\\"sourceModule\\\": null\n}\""}],"x-require-features":["scheduler.jobs.manage"],"x-require-auth":true},"put":{"operationId":"scheduler_put_scheduler_jobs","summary":"Update scheduledjob","description":"Updates an existing scheduled job by ID.\n\nRequires features: scheduler.jobs.manage","tags":["Scheduler"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"string","description":null,"targetQueue":null,"targetCommand":null,"targetPayload":null,"requireFeature":null}}},"description":"Updates an existing scheduled job by ID."},"responses":{"200":{"description":"ScheduledJob updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/scheduler/jobs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"string\\\",\n  \\\"description\\\": null,\n  \\\"targetQueue\\\": null,\n  \\\"targetCommand\\\": null,\n  \\\"targetPayload\\\": null,\n  \\\"requireFeature\\\": null\n}\""}],"x-require-features":["scheduler.jobs.manage"],"x-require-auth":true},"delete":{"operationId":"scheduler_delete_scheduler_jobs","summary":"Delete scheduledjob","description":"Deletes a scheduled job by ID.\n\nRequires features: scheduler.jobs.manage","tags":["Scheduler"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"id":"string"}}},"description":"Deletes a scheduled job by ID."},"responses":{"200":{"description":"ScheduledJob deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/scheduler/jobs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"string\\\"\n}\""}],"x-require-features":["scheduler.jobs.manage"],"x-require-auth":true}},"/scheduler/targets":{"get":{"operationId":"listScheduleTargets","summary":"List available queues and commands","description":"Returns all registered queue names (from module workers) and command IDs (from the command registry) that can be used as schedule targets.","tags":["Scheduler"],"parameters":[],"responses":{"200":{"description":"Available targets","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchema"},"example":{"queues":[{"value":"string","label":"string"}],"commands":[{"value":"string","label":"string"}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerTargetsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/scheduler/targets\" \\\n  -H \"Accept: application/json\""}]}},"/scheduler/trigger":{"post":{"operationId":"triggerScheduledJob","summary":"Manually trigger a schedule","description":"Executes a scheduled job immediately, bypassing the scheduled time. Only works with async queue strategy.","tags":["Scheduler"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostRequestBodyContentApplicationJsonSchema"},"example":{"id":"string"}}}},"responses":{"200":{"description":"Schedule triggered successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"jobId":"string","message":"string"}}}},"400":{"description":"Invalid request or local strategy not supported","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Access denied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Schedule not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/scheduler/trigger\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"id\\\": \\\"string\\\"\n}\""}]}},"/scheduler/jobs/{id}/executions":{"get":{"operationId":"getScheduleExecutions","summary":"Get execution history for a schedule","description":"Fetch recent executions from BullMQ for a scheduled job. Requires QUEUE_STRATEGY=async.","tags":["Scheduler"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetParameters0Schema"}},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetParameters1Schema"},"example":1}],"responses":{"200":{"description":"Execution history","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","scheduleId":"00000000-0000-4000-8000-000000000000","startedAt":"string","finishedAt":null,"status":"running","triggerType":"scheduled","triggeredByUserId":null,"errorMessage":null,"errorStack":null,"durationMs":null,"queueJobId":"string","queueName":"string","attemptsMade":1,"result":null}],"total":1,"page":1,"pageSize":1}}}},"400":{"description":"Local strategy not supported","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Access denied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Schedule not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/scheduler/jobs/:id/executions?pageSize=20\" \\\n  -H \"Accept: application/json\""}]}},"/scheduler/queue-jobs/{jobId}":{"get":{"operationId":"getQueueJobDetails","summary":"Get BullMQ job details and logs","description":"Fetch detailed information and logs for a queue job. Requires QUEUE_STRATEGY=async.","tags":["Scheduler"],"parameters":[{"name":"jobId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetParameters0Schema"}},{"name":"queue","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetParameters1Schema"},"example":"string"}],"responses":{"200":{"description":"Job details and logs","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchema"},"example":{"id":"string","name":"string","state":"waiting","progress":null,"returnvalue":null,"failedReason":null,"stacktrace":null,"attemptsMade":1,"processedOn":null,"finishedOn":null,"logs":["string"]}}}},"400":{"description":"Invalid request or local strategy not supported","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"403":{"description":"Access denied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"404":{"description":"Job not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Internal server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/scheduler/queue-jobs/:jobId?queue=string\" \\\n  -H \"Accept: application/json\""}]}},"/search/embeddings/reindex/cancel":{"post":{"operationId":"search_post_search_embeddings_reindex_cancel","summary":"Cancel vector reindex","description":"Cancels an in-progress vector reindex operation.\n\nRequires features: search.embeddings.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/embeddings/reindex/cancel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["search.embeddings.manage"],"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.\n\nRequires features: search.embeddings.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/embeddings/reindex\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-features":["search.embeddings.manage"],"x-require-auth":true}},"/search/embeddings":{"get":{"operationId":"search_get_search_embeddings","summary":"Get embeddings configuration","description":"Returns current embedding provider and model configuration.\n\nRequires features: search.embeddings.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/embeddings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["search.embeddings.view"],"x-require-auth":true},"post":{"operationId":"search_post_search_embeddings","summary":"Update embeddings configuration","description":"Updates the embedding provider and model settings.\n\nRequires features: search.embeddings.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/embeddings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-features":["search.embeddings.manage"],"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.\n\nRequires features: search.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/index\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["search.view"],"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.\n\nRequires features: search.embeddings.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/index\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["search.embeddings.manage"],"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.\n\nRequires features: search.reindex","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/reindex/cancel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["search.reindex"],"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.\n\nRequires features: search.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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/reindex\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-features":["search.reindex"],"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.\n\nRequires features: search.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/search/global?q=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["search.view"],"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.\n\nRequires features: search.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/search?q=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["search.view"],"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.\n\nRequires features: search.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/settings/fulltext\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["search.view"],"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.\n\nRequires features: search.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/settings/global-search\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["search.view"],"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.\n\nRequires features: search.manage","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["search.manage"],"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.\n\nRequires features: search.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["search.view"],"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.\n\nRequires features: search.view","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,"envVars":[{"name":"string","set":true,"hint":"string"}]}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/search/settings/vector-store\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["search.view"],"x-require-auth":true}},"/data_sync/mappings":{"get":{"operationId":"data_sync_get_data_sync_mappings","summary":"List or create field mappings","description":"Requires features: data_sync.configure","tags":["Data Sync"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/data_sync/mappings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.configure"],"x-require-auth":true},"post":{"operationId":"data_sync_post_data_sync_mappings","summary":"List or create field mappings","description":"Requires features: data_sync.configure","tags":["Data Sync"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/data_sync/mappings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.configure"],"x-require-auth":true}},"/data_sync/schedules":{"get":{"operationId":"data_sync_get_data_sync_schedules","summary":"List or create sync schedules","description":"Requires features: data_sync.configure","tags":["Data Sync"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/data_sync/schedules\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.configure"],"x-require-auth":true},"post":{"operationId":"data_sync_post_data_sync_schedules","summary":"List or create sync schedules","description":"Requires features: data_sync.configure","tags":["Data Sync"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/data_sync/schedules\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.configure"],"x-require-auth":true}},"/data_sync/mappings/{id}":{"get":{"operationId":"data_sync_get_data_sync_mappings_id","summary":"Get, update, or delete a field mapping","description":"Requires features: data_sync.configure","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/data_sync/mappings/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.configure"],"x-require-auth":true},"put":{"operationId":"data_sync_put_data_sync_mappings_id","summary":"Get, update, or delete a field mapping","description":"Requires features: data_sync.configure","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/data_sync/mappings/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.configure"],"x-require-auth":true},"delete":{"operationId":"data_sync_delete_data_sync_mappings_id","summary":"Get, update, or delete a field mapping","description":"Requires features: data_sync.configure","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdDeleteParameters0Schema"}}],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/data_sync/mappings/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.configure"],"x-require-auth":true}},"/data_sync/runs/{id}":{"get":{"operationId":"data_sync_get_data_sync_runs_id","summary":"Get sync run detail","description":"Requires features: data_sync.view","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/data_sync/runs/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.view"],"x-require-auth":true}},"/data_sync/schedules/{id}":{"get":{"operationId":"data_sync_get_data_sync_schedules_id","summary":"Manage a sync schedule","description":"Requires features: data_sync.configure","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/data_sync/schedules/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.configure"],"x-require-auth":true},"put":{"operationId":"data_sync_put_data_sync_schedules_id","summary":"Manage a sync schedule","description":"Requires features: data_sync.configure","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/data_sync/schedules/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.configure"],"x-require-auth":true},"delete":{"operationId":"data_sync_delete_data_sync_schedules_id","summary":"Manage a sync schedule","description":"Requires features: data_sync.configure","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdDeleteParameters0Schema"}}],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/data_sync/schedules/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.configure"],"x-require-auth":true}},"/data_sync/options":{"get":{"operationId":"data_sync_get_data_sync_options","summary":"List data sync integration options","description":"Requires features: data_sync.view","tags":["Data Sync"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncOptionsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncOptionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncOptionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/data_sync/options\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.view"],"x-require-auth":true}},"/data_sync/run":{"post":{"operationId":"data_sync_post_data_sync_run","summary":"Start a data sync run","description":"Requires features: data_sync.run","tags":["Data Sync"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/data_sync/run\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.run"],"x-require-auth":true}},"/data_sync/runs/{id}/cancel":{"post":{"operationId":"data_sync_post_data_sync_runs_id_cancel","summary":"Cancel a running sync","description":"Requires features: data_sync.run","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/data_sync/runs/:id/cancel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.run"],"x-require-auth":true}},"/data_sync/runs/{id}/retry":{"post":{"operationId":"data_sync_post_data_sync_runs_id_retry","summary":"Retry a failed sync run","description":"Requires features: data_sync.run","tags":["Data Sync"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/data_sync/runs/:id/retry\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.run"],"x-require-auth":true}},"/data_sync/runs":{"get":{"operationId":"data_sync_get_data_sync_runs","summary":"List sync runs","description":"Requires features: data_sync.view","tags":["Data Sync"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncRunsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/data_sync/runs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.view"],"x-require-auth":true}},"/data_sync/validate":{"post":{"operationId":"data_sync_post_data_sync_validate","summary":"Validate sync connection","description":"Requires features: data_sync.configure","tags":["Data Sync"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncValidatePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncValidatePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDataSyncValidatePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/data_sync/validate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["data_sync.configure"],"x-require-auth":true}},"/api_keys/keys":{"get":{"operationId":"api_keys_get_api_keys_keys","summary":"List API keys","description":"Returns paginated API keys visible to the current user, including per-key role assignments and organization context.\n\nRequires features: api_keys.view","tags":["API Keys"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetParameters0Schema"},"example":"string"},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetParameters1Schema"},"example":"string"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetParameters2Schema"},"example":"string"}],"responses":{"200":{"description":"Collection of API keys","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"string","name":"string","description":null,"keyPrefix":"string","organizationId":null,"organizationName":null,"createdAt":"string","lastUsedAt":null,"expiresAt":null,"roles":[{"id":"string","name":null}]}],"total":1,"page":1,"pageSize":1,"totalPages":1}}}},"400":{"description":"Tenant context missing","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/api_keys/keys\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["api_keys.view"],"x-require-auth":true},"post":{"operationId":"api_keys_post_api_keys_keys","summary":"Create API key","description":"Creates a new API key, returning the one-time secret value together with the generated key prefix and scope details.\n\nRequires features: api_keys.create","tags":["API Keys"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","description":null,"tenantId":null,"organizationId":null,"roles":[],"expiresAt":null}}},"description":"API key definition including optional scope and role assignments."},"responses":{"201":{"description":"API key created successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchema"},"example":{"id":"string","name":"string","keyPrefix":"string","tenantId":null,"organizationId":null,"roles":[{"id":"string","name":null}]}}}},"400":{"description":"Invalid payload or missing tenant context","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/api_keys/keys\" \\\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  \\\"tenantId\\\": null,\n  \\\"organizationId\\\": null,\n  \\\"roles\\\": [],\n  \\\"expiresAt\\\": null\n}\""}],"x-require-features":["api_keys.create"],"x-require-auth":true},"delete":{"operationId":"api_keys_delete_api_keys_keys","summary":"Delete API key","description":"Removes an API key by identifier. The key must belong to the current tenant and fall within the requester organization scope.\n\nRequires features: api_keys.delete","tags":["API Keys"],"parameters":[{"name":"id","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000","description":"API key identifier to delete"}],"responses":{"200":{"description":"Key deleted successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysDeleteResponses200ContentApplicationJsonSchema"},"example":{"success":true}}}},"400":{"description":"Missing or invalid identifier","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Key not found within scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsApiKeysKeysDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/api_keys/keys?id=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["api_keys.delete"],"x-require-auth":true}},"/ai_assistant/ai/agents":{"get":{"operationId":"aiAssistantListAgents","summary":"List registered AI agents, filtered by the caller's features.","description":"Returns `{ agents: [...] }` — the subset of agents from `ai-agents.generated.ts` that the authenticated caller can invoke based on each agent's `requiredFeatures`. Mirrors the `meta.list_agents` tool handler so backoffice pages (e.g. the playground) can render an agent picker without going through the MCP tool transport.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"responses":{"200":{"description":"Accessible agent summaries.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Internal failure while loading the agent registry.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsGetResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/agents\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/ai/chat":{"post":{"operationId":"aiAssistantChatAgent","summary":"Stream a chat turn for a registered AI agent","description":"Dispatches a chat turn to the focused AI agent identified by `?agent=<module>.<agent>`. Enforces agent-level `requiredFeatures`, tool whitelisting, read-only / mutationPolicy, execution-mode compatibility, and attachment media-type policy. The streaming response body uses an AI SDK-compatible `text/event-stream` transport. Optional `?provider=`, `?model=`, and `?baseUrl=` query params let callers override the resolved provider/model/base-URL for this turn (Phase 4a). Provider must be registered and configured; baseUrl must match `AI_RUNTIME_BASEURL_ALLOWLIST` when set. Both are suppressed when the agent declares `allowRuntimeOverride: false`.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"agent","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostParameters0Schema"},"example":"string"},{"name":"provider","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostParameters1Schema"},"example":"string"},{"name":"model","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostParameters2Schema"},"example":"string"},{"name":"baseUrl","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostParameters3Schema"},"example":"string"},{"name":"loopBudget","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostParameters4Schema"},"example":"tight"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchema"},"example":{"messages":[{"role":"user","content":"string"}]}}},"description":"Chat turn payload. `messages` is required; `attachmentIds`, `debug`, and `pageContext` are optional."},"responses":{"200":{"description":"Streaming text/event-stream response compatible with AI SDK chat transports.","content":{"text/event-stream":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostResponses200ContentTextEventStreamSchema"}}}},"400":{"description":"Invalid query param, malformed payload, or message count above the cap. Typed codes: `runtime_override_disabled` (agent has allowRuntimeOverride:false), `provider_unknown` (provider id not registered), `provider_not_configured` (provider registered but no API key in env), `baseurl_not_allowlisted` (baseUrl not in AI_RUNTIME_BASEURL_ALLOWLIST).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Unknown agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Agent/tool/execution-mode policy violation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostResponses409ContentApplicationJsonSchema"}}}},"500":{"description":"Internal runtime failure.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/chat?agent=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"messages\\\": [\n    {\n      \\\"role\\\": \\\"user\\\",\n      \\\"content\\\": \\\"string\\\"\n    }\n  ]\n}\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/ai/conversations/import":{"post":{"operationId":"aiAssistantImportConversation","summary":"Import a conversation that previously lived only in browser localStorage.","description":"Idempotent: messages with `clientMessageId` already present in the server transcript are skipped and counted in `skippedMessageCount`. New messages are appended with the original `clientMessageId` so subsequent retries continue to dedupe. Up to 100 messages per request. Attachment previews stored as `data:` URLs in the source localStorage record MUST NOT be forwarded to this endpoint; the UI strips them before upload.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"responses":{"200":{"description":"Import result including imported/skipped counters.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsImportPostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid request body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsImportPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsImportPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsImportPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/conversations/import\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/ai/conversations":{"get":{"operationId":"aiAssistantListConversations","summary":"List AI chat conversations visible to the caller.","description":"Returns `{ items, nextCursor }` for the authenticated caller, ordered by `lastMessageAt` descending. View-only callers receive only their own conversations. Callers with `ai_assistant.conversations.manage` may list conversations across users in the same tenant/organization. The `agent` and `status` filters are optional; `cursor` is the ISO timestamp returned by a previous response.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"responses":{"200":{"description":"Caller-owned conversation summaries.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid query parameters.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/conversations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true},"post":{"operationId":"aiAssistantCreateConversation","summary":"Idempotently create a new AI chat conversation.","description":"If a non-deleted conversation already exists with the supplied `conversationId` for the authenticated caller in this tenant/org, returns the existing summary. Otherwise creates a fresh row and writes the owner-participant row in the same transaction.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"responses":{"200":{"description":"Existing conversation (idempotent path).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsPostResponses200ContentApplicationJsonSchema"}}}},"201":{"description":"Newly created conversation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsPostResponses201ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid request body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/conversations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/ai/run-object":{"post":{"operationId":"aiAssistantRunObject","summary":"Run an object-mode AI agent and return the generated object","description":"Invokes `runAiAgentObject` server-side for the registered AI agent identified by `agent` (matching \"<module>.<agent>\"). Enforces the same `requiredFeatures`, tool whitelisting, mutationPolicy, and attachment media-type policy as the chat dispatcher, but additionally requires the agent to declare `executionMode: \"object\"`. Returns the generated object in a single JSON response (no streaming).\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchema"},"example":{"agent":"string","messages":[{"role":"user","content":"string"}]}}},"description":"Object-mode dispatch payload. `agent` and `messages` are required; `attachmentIds`, `pageContext`, and `modelOverride` are optional."},"responses":{"200":{"description":"Object-mode run completed; response body contains `{ object, usage?, finishReason? }`.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Malformed payload or message cap exceeded.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Unknown agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Agent/tool/execution-mode policy violation.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostResponses409ContentApplicationJsonSchema"}}}},"422":{"description":"Agent does not support object-mode execution.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostResponses422ContentApplicationJsonSchema"}}}},"500":{"description":"Internal runtime failure.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/run-object\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"agent\\\": \\\"string\\\",\n  \\\"messages\\\": [\n    {\n      \\\"role\\\": \\\"user\\\",\n      \\\"content\\\": \\\"string\\\"\n    }\n  ]\n}\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/chat":{"post":{"operationId":"ai_assistant_post_ai_assistant_chat","summary":"Send message to AI agent via SSE stream","description":"Requires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantChatPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantChatPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantChatPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/chat\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/health":{"get":{"operationId":"ai_assistant_get_ai_assistant_health","summary":"Check OpenCode and MCP connection status","description":"Requires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantHealthGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantHealthGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantHealthGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/health\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/mcp-key":{"post":{"operationId":"ai_assistant_post_ai_assistant_mcp_key","summary":"Generate MCP API key","description":"Generates a persistent `omk_` API key scoped to the calling user's tenant/organization and carrying the caller's own roles, so the key has the same ACL as the user.\n\nRequires features: api_keys.create","tags":["AI Assistant"],"parameters":[],"responses":{"200":{"description":"API key created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchema"},"example":{"id":"string","name":"string","keyPrefix":"string","secret":"string","tenantId":null,"organizationId":null,"roles":["string"]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Failed to create MCP API key","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/mcp-key\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["api_keys.create"],"x-require-auth":true}},"/ai_assistant/route":{"post":{"operationId":"ai_assistant_post_ai_assistant_route","summary":"Route user query to appropriate AI handler","description":"Requires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantRoutePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantRoutePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantRoutePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/route\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/session-key":{"post":{"operationId":"ai_assistant_post_ai_assistant_session_key","summary":"Generate session key","description":"Generates a new session token that can be included in MCP tool calls via the _sessionToken parameter. The token inherits the calling user's roles and organization context.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"responses":{"200":{"description":"Session key created successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSessionKeyPostResponses200ContentApplicationJsonSchema"},"example":{"sessionToken":"string","expiresAt":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSessionKeyPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSessionKeyPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Failed to create session key","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSessionKeyPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/session-key\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/settings/allowlist":{"put":{"operationId":"ai_assistant_put_ai_assistant_settings_allowlist","summary":"Upsert per-tenant AI provider/model allowlist","description":"Persists the per-tenant allowlist of providers and models. The runtime intersects this with the env allowlist (`OM_AI_AVAILABLE_*`) at resolution time. Tenant values that fall outside the env allowlist are rejected with `provider_not_in_env_allowlist` / `model_not_in_env_allowlist` 400 codes. Gated by `ai_assistant.settings.manage`.\n\nRequires features: ai_assistant.settings.manage","tags":["AI Assistant"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchema"},"example":{"allowedProviders":null}}},"description":"Allowlist payload. `allowedProviders: null` clears tenant provider restriction (inherit env). Missing key in `allowedModelsByProvider` inherits env for that provider."},"responses":{"200":{"description":"Allowlist saved. Returns the saved snapshot.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Validation error or values outside env allowlist.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/ai_assistant/settings/allowlist\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"allowedProviders\\\": null\n}\""}],"x-require-features":["ai_assistant.settings.manage"],"x-require-auth":true},"delete":{"operationId":"ai_assistant_delete_ai_assistant_settings_allowlist","summary":"Clear per-tenant AI provider/model allowlist","description":"Soft-deletes the tenant allowlist row. Tenant overrides revert to env-only enforcement. Idempotent — returns `{ cleared: false }` when no active row existed.\n\nRequires features: ai_assistant.settings.manage","tags":["AI Assistant"],"parameters":[],"responses":{"200":{"description":"Returns `{ cleared: boolean }`.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistDeleteResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/ai_assistant/settings/allowlist\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.settings.manage"],"x-require-auth":true}},"/ai_assistant/settings":{"get":{"operationId":"ai_assistant_get_ai_assistant_settings","summary":"Get AI provider configuration","description":"Requires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true},"put":{"operationId":"ai_assistant_put_ai_assistant_settings","summary":"Upsert per-tenant AI runtime override","description":"Creates or updates the per-tenant AI runtime override (provider, model, baseURL). Optionally scoped to a specific agent via `agentId`. Gated by `ai_assistant.settings.manage`. baseURL must match AI_RUNTIME_BASEURL_ALLOWLIST when set.\n\nRequires features: ai_assistant.settings.manage","tags":["AI Assistant"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchema"},"example":{"providerId":null,"modelId":null,"baseURL":null,"agentId":null,"allowedOverrideProviders":null}}},"description":"Override payload. All fields nullable/optional; null explicitly clears the axis."},"responses":{"200":{"description":"Override saved. Returns the saved row.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Validation error: unknown provider, invalid URL, or baseURL not allowlisted.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/ai_assistant/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"providerId\\\": null,\n  \\\"modelId\\\": null,\n  \\\"baseURL\\\": null,\n  \\\"agentId\\\": null,\n  \\\"allowedOverrideProviders\\\": null\n}\""}],"x-require-features":["ai_assistant.settings.manage"],"x-require-auth":true},"delete":{"operationId":"ai_assistant_delete_ai_assistant_settings","summary":"Clear per-tenant AI runtime override","description":"Soft-deletes the active per-tenant runtime override. Pass `agentId` to clear only the agent-specific row; omit to clear the tenant-wide default. Gated by `ai_assistant.settings.manage`. Idempotent — returns 200 with `cleared: false` when no active row existed.\n\nRequires features: ai_assistant.settings.manage","tags":["AI Assistant"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsDeleteRequestBodyContentApplicationJsonSchema"},"example":{"agentId":null}}},"description":"Optional agentId to scope the delete."},"responses":{"200":{"description":"Returns `{ cleared: boolean }` indicating whether a row was found and removed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsDeleteResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/ai_assistant/settings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"agentId\\\": null\n}\""}],"x-require-features":["ai_assistant.settings.manage"],"x-require-auth":true}},"/ai_assistant/tools/execute":{"post":{"operationId":"ai_assistant_post_ai_assistant_tools_execute","summary":"Execute a specific MCP tool by name","description":"Requires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantToolsExecutePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantToolsExecutePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantToolsExecutePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/tools/execute\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/tools":{"get":{"operationId":"ai_assistant_get_ai_assistant_tools","summary":"List available MCP tools filtered by user permissions","description":"Requires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantToolsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantToolsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantToolsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/tools\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/usage/daily":{"get":{"operationId":"aiAssistantUsageDaily","summary":"Fetch daily token-usage rollup rows for a date window.","description":"Returns aggregated token-usage data from `ai_token_usage_daily` for the given date window. Tenant-scoped. Optionally filtered by `agentId` and/or `modelId`. Requires `ai_assistant.settings.manage`.\n\nRequires features: ai_assistant.settings.manage","tags":["AI Assistant"],"parameters":[{"name":"from","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageDailyGetParameters0Schema"},"example":"string"},{"name":"to","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageDailyGetParameters1Schema"},"example":"string"},{"name":"agentId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageDailyGetParameters2Schema"},"example":"string"},{"name":"modelId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageDailyGetParameters3Schema"},"example":"string"}],"responses":{"200":{"description":"Array of daily rollup rows.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageDailyGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid query parameters.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageDailyGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageDailyGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageDailyGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Internal failure.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageDailyGetResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/usage/daily?from=string&to=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.settings.manage"],"x-require-auth":true}},"/ai_assistant/usage/sessions":{"get":{"operationId":"aiAssistantUsageSessions","summary":"List per-session token usage totals for a date window.","description":"Returns aggregated token-usage data grouped by `session_id` from `ai_token_usage_events` for the given date window. Tenant-scoped. Optionally filtered by `agentId`. Paginated via `limit` / `offset`. Requires `ai_assistant.settings.manage`.\n\nRequires features: ai_assistant.settings.manage","tags":["AI Assistant"],"parameters":[{"name":"from","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsGetParameters0Schema"},"example":"string"},{"name":"to","in":"query","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsGetParameters1Schema"},"example":"string"},{"name":"agentId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsGetParameters2Schema"},"example":"string"},{"name":"limit","in":"query","required":true,"schema":{}},{"name":"offset","in":"query","required":true,"schema":{}}],"responses":{"200":{"description":"Array of session-level usage summaries plus pagination metadata.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid query parameters.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Internal failure.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsGetResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/usage/sessions?from=string&to=string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.settings.manage"],"x-require-auth":true}},"/ai_assistant/ai/actions/{id}/cancel":{"post":{"operationId":"aiAssistantCancelPendingAction","summary":"Cancel an AI pending action without executing the wrapped tool.","description":"Flips a pending AI action from `pending` to `cancelled` and emits the `ai.action.cancelled` event. The tool handler is never invoked. Idempotent: a second call on a row already in `cancelled` status returns 200 with the current row without re-emitting the event. Rows whose `expiresAt` is in the past are flipped to `expired` and returned as 409 `expired` so the client can surface the TTL loss instead of silently masking it as a cancellation.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdCancelPostParameters0Schema"}}],"responses":{"200":{"description":"Cancellation complete (or idempotent replay); body includes the serialized pending action with status `cancelled`.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdCancelPostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid cancel request body (unknown field, reason exceeds 500 chars, wrong type).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdCancelPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdCancelPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdCancelPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Pending action not found in the caller scope.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdCancelPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Pending action is not in `pending` status (already confirmed/failed/executing) or has expired.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdCancelPostResponses409ContentApplicationJsonSchema"}}}},"500":{"description":"Unexpected server failure during cancel.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdCancelPostResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/actions/:id/cancel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/ai/actions/{id}/confirm":{"post":{"operationId":"aiAssistantConfirmPendingAction","summary":"Confirm an AI pending action, re-running every server-side check before execution.","description":"Re-verifies the full contract from spec §9.4 (status, expiry, agent registration, required features, mutation policy, tool whitelist, attachment tenant scope, record version, and schema drift), flips the pending-action state machine to `executing`, invokes the wrapped tool handler, and persists `executionResult`. Idempotent: a second call on a row already in `confirmed` state returns the prior result without re-executing the handler.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdConfirmPostParameters0Schema"}}],"responses":{"200":{"description":"Confirmation complete; body includes the serialized pending action and the mutation result.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdConfirmPostResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdConfirmPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdConfirmPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Pending action or agent not found in the caller scope.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdConfirmPostResponses404ContentApplicationJsonSchema"}}}},"409":{"description":"Pending action is not in `pending` status or has expired.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdConfirmPostResponses409ContentApplicationJsonSchema"}}}},"412":{"description":"Record version changed between propose and confirm, or the input schema no longer accepts the stored payload.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdConfirmPostResponses412ContentApplicationJsonSchema"}}}},"500":{"description":"Unexpected server failure during confirm.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdConfirmPostResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/actions/:id/confirm\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/ai/actions/{id}":{"get":{"operationId":"aiAssistantGetPendingAction","summary":"Fetch the current state of an AI pending action by id.","description":"Returns the tenant-scoped {@link AiPendingAction} addressed by `:id`. Powers the chat UI reconnect/polling path: after a page reload or SSE reconnect the client carries the `pendingActionId` from an earlier `mutation-preview-card` UI part and calls this route to re-hydrate the card. Server-internal fields (`normalizedInput`, `createdByUserId`, `idempotencyKey`) are stripped by a whitelist serializer. Enforces tenant/org scoping via the repository.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Serialized pending action. Never includes normalizedInput, createdByUserId, or idempotencyKey.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"No pending action with the given id is accessible to the caller.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdGetResponses404ContentApplicationJsonSchema"}}}},"500":{"description":"Internal runtime failure.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdGetResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/actions/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/ai/agents/{agentId}/loop-override":{"get":{"operationId":"aiAssistantGetLoopOverride","summary":"Read the current loop-policy override for this agent, if any.","description":"Returns `{ agentId, override }` where `override` is the agent-scoped loop-policy row from `ai_agent_runtime_overrides` (or `null`). Requires `ai_assistant.view`.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"agentId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetParameters0Schema"}}],"responses":{"200":{"description":"Loop override payload.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Unknown agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/agents/:agentId/loop-override\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true},"put":{"operationId":"aiAssistantSaveLoopOverride","summary":"Set (or replace) the tenant-scoped loop-policy override for this agent.","description":"Body: loop columns. All fields are nullable/optional; `null` explicitly clears that axis. Validates `loopStopWhenJson` items and `loopActiveToolsJson` membership. Requires `ai_assistant.settings.manage`.\n\nRequires features: ai_assistant.settings.manage","tags":["AI Assistant"],"parameters":[{"name":"agentId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchema"},"example":{"loopDisabled":null,"loopMaxSteps":null,"loopMaxToolCalls":null,"loopMaxWallClockMs":null,"loopMaxTokens":null,"loopStopWhenJson":null,"loopActiveToolsJson":null}}},"description":"Loop override payload."},"responses":{"200":{"description":"Override persisted.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid agent id or validation error.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Unknown agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/agents/:agentId/loop-override\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"loopDisabled\\\": null,\n  \\\"loopMaxSteps\\\": null,\n  \\\"loopMaxToolCalls\\\": null,\n  \\\"loopMaxWallClockMs\\\": null,\n  \\\"loopMaxTokens\\\": null,\n  \\\"loopStopWhenJson\\\": null,\n  \\\"loopActiveToolsJson\\\": null\n}\""}],"x-require-features":["ai_assistant.settings.manage"],"x-require-auth":true},"delete":{"operationId":"aiAssistantClearLoopOverride","summary":"Remove the loop-policy columns from the agent-scoped runtime override row.","description":"Nulls out all seven loop columns on the agent-scoped `ai_agent_runtime_overrides` row. Idempotent — returns 200 even when no override exists. Requires `ai_assistant.settings.manage`.\n\nRequires features: ai_assistant.settings.manage","tags":["AI Assistant"],"parameters":[{"name":"agentId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteParameters0Schema"}}],"responses":{"200":{"description":"Loop override cleared (or already absent).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Unknown agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/agents/:agentId/loop-override\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.settings.manage"],"x-require-auth":true}},"/ai_assistant/ai/agents/{agentId}/models":{"get":{"operationId":"aiAssistantGetAgentModels","summary":"Get the providers and curated models available for the chat-UI picker for this agent","description":"Returns all configured providers with their curated model catalogs, filtered to providers that have an API key configured in the current environment. When the agent declares `allowRuntimeOverride: false`, the response reflects that constraint so the UI picker can hide itself. Includes the agent's resolved default provider/model so the picker can render a \"(default)\" badge next to the right entry. RBAC: requires the same features as the agent itself (typically `ai_assistant.view`).\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"agentId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdModelsGetParameters0Schema"}}],"responses":{"200":{"description":"Providers and curated models available for the agent picker. Empty `providers` array when `allowRuntimeOverride` is false.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Unknown agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/agents/:agentId/models\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/ai/agents/{agentId}/mutation-policy":{"get":{"operationId":"aiAssistantGetMutationPolicyOverride","summary":"Read the effective mutationPolicy for an agent — code-declared value plus any tenant override.","description":"Returns `{ agentId, codeDeclared, override }` where `codeDeclared` is the agent's compiled-in `mutationPolicy` and `override` is the persisted tenant-scoped override (or `null`). Requires `ai_assistant.view`.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"agentId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetParameters0Schema"}}],"responses":{"200":{"description":"Effective mutationPolicy payload.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Unknown agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/agents/:agentId/mutation-policy\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true},"post":{"operationId":"aiAssistantSaveMutationPolicyOverride","summary":"Set (or replace) the tenant-scoped mutationPolicy override for this agent.","description":"Body: `{ mutationPolicy: \"read-only\" | \"confirm-required\" | \"destructive-confirm-required\", notes? }`. The override MUST NOT escalate beyond the agent's code-declared policy. Escalation attempts are rejected with 400 + `code: \"escalation_not_allowed\"`. Requires `ai_assistant.settings.manage`.\n\nRequires features: ai_assistant.settings.manage","tags":["AI Assistant"],"parameters":[{"name":"agentId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostRequestBodyContentApplicationJsonSchema"},"example":{"mutationPolicy":"read-only"}}},"description":"Body: `{ mutationPolicy, notes? }`."},"responses":{"200":{"description":"Override persisted.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid agent id, malformed body, or escalation attempt.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Unknown agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/agents/:agentId/mutation-policy\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"mutationPolicy\\\": \\\"read-only\\\"\n}\""}],"x-require-features":["ai_assistant.settings.manage"],"x-require-auth":true},"delete":{"operationId":"aiAssistantClearMutationPolicyOverride","summary":"Remove the tenant-scoped mutationPolicy override for this agent.","description":"Deletes the override row if it exists; subsequent calls fall back to the agent's code-declared policy. Idempotent — returns 200 even when no override exists. Requires `ai_assistant.settings.manage`.\n\nRequires features: ai_assistant.settings.manage","tags":["AI Assistant"],"parameters":[{"name":"agentId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteParameters0Schema"}}],"responses":{"200":{"description":"Override cleared (or already absent).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Unknown agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/agents/:agentId/mutation-policy\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.settings.manage"],"x-require-auth":true}},"/ai_assistant/ai/agents/{agentId}/prompt-override":{"get":{"operationId":"aiAssistantGetPromptOverride","summary":"Read the latest prompt-section override for an agent plus recent version history.","description":"Returns `{ agentId, override, versions }` where `override` is the latest persisted row (or `null`) and `versions` is the newest-first history capped at 10 rows. Tenant-scoped; requires `ai_assistant.settings.manage`.","tags":["AI Assistant"],"parameters":[{"name":"agentId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetParameters0Schema"}}],"responses":{"200":{"description":"Latest override + recent version history.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthenticated caller.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetResponses401ContentApplicationJsonSchema"}}}},"403":{"description":"Caller lacks `ai_assistant.settings.manage`.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetResponses403ContentApplicationJsonSchema"}}}},"404":{"description":"Unknown agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/agents/:agentId/prompt-override\" \\\n  -H \"Accept: application/json\""}]},"post":{"operationId":"aiAssistantSavePromptOverride","summary":"Save a new prompt-section override version for the agent.","description":"Persists an additive `{ sections: Record<sectionId, text>, notes? }` override, allocating the next monotonic version for `(tenant, org, agent)`. Reserved policy keys (`mutationPolicy`, `readOnly`, `allowedTools`, `acceptedMediaTypes`) are rejected with 400 / `reserved_key`. Requires `ai_assistant.settings.manage`.","tags":["AI Assistant"],"parameters":[{"name":"agentId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostRequestBodyContentApplicationJsonSchema"},"example":{}}},"description":"Body: `{ sections: Record<string, string>, notes?: string }`."},"responses":{"200":{"description":"Override persisted. Returns `{ ok: true, version, updatedAt }`.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid agent id, malformed body, or reserved policy key.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthenticated caller.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostResponses401ContentApplicationJsonSchema"}}}},"403":{"description":"Caller lacks `ai_assistant.settings.manage`.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostResponses403ContentApplicationJsonSchema"}}}},"404":{"description":"Unknown agent id.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/agents/:agentId/prompt-override\" \\\n  -H \"Accept: application/json\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}]}},"/ai_assistant/ai/conversations/{conversationId}/participants/{userId}":{"delete":{"operationId":"aiAssistantRevokeConversationParticipant","summary":"Revoke a participant from a conversation (soft-delete).","description":"Soft-deletes the participant row. If no active non-owner participants remain, the conversation visibility is reset to \"private\". Only the conversation owner or a manager may revoke participants.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"conversationId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteParameters0Schema"}},{"name":"userId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteParameters1Schema"}}],"responses":{"204":{"description":"Participant revoked."},"400":{"description":"Invalid path parameters.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Conversation not found.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/conversations/:conversationId/participants/:userId\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/ai/conversations/{conversationId}/participants":{"get":{"operationId":"aiAssistantListConversationParticipants","summary":"List active participants of a conversation.","description":"Returns the list of active (non-revoked) participants for the conversation. Only the conversation owner or a caller with `ai_assistant.conversations.manage` can call this endpoint.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"conversationId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsGetParameters0Schema"}}],"responses":{"200":{"description":"List of active participants.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Conversation not found or not accessible.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/conversations/:conversationId/participants\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true},"post":{"operationId":"aiAssistantAddConversationParticipant","summary":"Add a participant to a conversation.","description":"Grants a named user read access to the conversation. Requires `ai_assistant.conversations.share`. Only the conversation owner may add participants. If the user was previously revoked, the soft-deleted row is restored.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"conversationId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsPostParameters0Schema"}}],"responses":{"201":{"description":"Participant added; conversation visibility updated to \"shared\".","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses201ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid request body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Conversation not found.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/conversations/:conversationId/participants\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/ai/conversations/{conversationId}":{"get":{"operationId":"aiAssistantGetConversation","summary":"Fetch a conversation summary and recent transcript.","description":"Returns `{ conversation, messages, nextCursor }` for the supplied `conversationId`. View-only callers can load only their own conversations. Callers with `ai_assistant.conversations.manage` can load conversations across users in the same tenant/organization. Messages are ordered ascending by `createdAt`. The `before` cursor returns the next older page when paging back through long transcripts.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"conversationId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdGetParameters0Schema"}}],"responses":{"200":{"description":"Conversation transcript page for the authenticated owner.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid path or query parameters.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"No conversation accessible to the caller.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/conversations/:conversationId\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true},"patch":{"operationId":"aiAssistantUpdateConversation","summary":"Update an existing conversation.","description":"Accepts a partial body containing any of `title`, `status`, `pageContext`. Setting `status` to `closed` archives the conversation while keeping its transcript intact. View-only callers can update only their own conversations; conversation managers can update conversations in the same tenant/organization.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"conversationId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdPatchParameters0Schema"}}],"responses":{"200":{"description":"Updated conversation summary.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdPatchResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid request body.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdPatchResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"No conversation accessible to the caller.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdPatchResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/conversations/:conversationId\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true},"delete":{"operationId":"aiAssistantDeleteConversation","summary":"Soft-delete a conversation and its messages.","description":"View-only callers can delete only their own conversations. Callers with `ai_assistant.conversations.manage` can delete conversations in the same tenant/organization. Marks the conversation row and every undeleted message row with a `deleted_at` timestamp in one transaction. The transcript remains in the database for audit/restore until a future retention worker hard-deletes it.\n\nRequires features: ai_assistant.view","tags":["AI Assistant"],"parameters":[{"name":"conversationId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdDeleteParameters0Schema"}}],"responses":{"200":{"description":"Soft-delete acknowledgment.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdDeleteResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"No conversation accessible to the caller.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdDeleteResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/ai_assistant/ai/conversations/:conversationId\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.view"],"x-require-auth":true}},"/ai_assistant/usage/sessions/{sessionId}":{"get":{"operationId":"aiAssistantUsageSessionDetail","summary":"Fetch per-step token usage event rows for a single session.","description":"Returns up to 200 raw `ai_token_usage_events` rows for the given `sessionId`, ordered by `created_at ASC, step_index ASC`. Tenant-scoped. Requires `ai_assistant.settings.manage`.\n\nRequires features: ai_assistant.settings.manage","tags":["AI Assistant"],"parameters":[{"name":"sessionId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsSessionIdGetParameters0Schema"}}],"responses":{"200":{"description":"Array of per-step event rows for the session.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsSessionIdGetResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Invalid session id (must be a UUID).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsSessionIdGetResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsSessionIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsSessionIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"No events found for the given session id in the caller's tenant.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsSessionIdGetResponses404ContentApplicationJsonSchema"}}}},"500":{"description":"Internal failure.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsSessionIdGetResponses500ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/ai_assistant/usage/sessions/:sessionId\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["ai_assistant.settings.manage"],"x-require-auth":true}},"/perspectives/{tableId}/{perspectiveId}":{"delete":{"operationId":"perspectives_delete_perspectives_tableId_perspectiveId","summary":"Delete a personal perspective","description":"Removes a perspective owned by the current user for the given table.\n\nRequires features: perspectives.use","tags":["Perspectives"],"parameters":[{"name":"tableId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteParameters0Schema"},"example":"string"},{"name":"perspectiveId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Perspective removed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"success":true}}}},"400":{"description":"Invalid identifiers supplied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Perspective not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Optimistic lock conflict","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/perspectives/string/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["perspectives.use"],"x-require-auth":true}},"/perspectives/{tableId}/roles/{roleId}":{"delete":{"operationId":"perspectives_delete_perspectives_tableId_roles_roleId","summary":"Clear role perspectives for a table","description":"Removes all role-level perspectives associated with the provided role identifier for the table.\n\nRequires features: perspectives.role_defaults","tags":["Perspectives"],"parameters":[{"name":"tableId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteParameters0Schema"},"example":"string"},{"name":"roleId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteRequestBodyContentApplicationJsonSchema"}}},"description":"Optional per-role or per-perspective optimistic-lock tokens."},"responses":{"200":{"description":"Role perspectives cleared.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"success":true}}}},"400":{"description":"Invalid identifiers supplied","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Role not found in scope","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Optimistic lock conflict","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/perspectives/string/roles/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["perspectives.role_defaults"],"x-require-auth":true}},"/perspectives/{tableId}":{"get":{"operationId":"perspectives_get_perspectives_tableId","summary":"Load perspectives for a table","description":"Returns personal perspectives and available role defaults for the requested table identifier.\n\nRequires features: perspectives.use","tags":["Perspectives"],"parameters":[{"name":"tableId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetParameters0Schema"},"example":"string"}],"responses":{"200":{"description":"Current perspectives and defaults.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchema"},"example":{"tableId":"string","perspectives":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","tableId":"string","settings":{},"isDefault":true,"createdAt":"string","updatedAt":null}],"defaultPerspectiveId":null,"rolePerspectives":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","tableId":"string","settings":{},"isDefault":true,"createdAt":"string","updatedAt":null,"roleId":"00000000-0000-4000-8000-000000000000","tenantId":null,"organizationId":null,"roleName":null}],"manageableRolePerspectives":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","tableId":"string","settings":{},"isDefault":true,"createdAt":"string","updatedAt":null,"roleId":"00000000-0000-4000-8000-000000000000","tenantId":null,"organizationId":null,"roleName":null}],"roles":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","hasPerspective":true,"hasDefault":true}],"canApplyToRoles":true}}}},"400":{"description":"Invalid table identifier","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/perspectives/string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["perspectives.use"],"x-require-auth":true},"post":{"operationId":"perspectives_post_perspectives_tableId","summary":"Create or update a perspective","description":"Saves a personal perspective and optionally applies the same configuration to selected roles.\n\nRequires features: perspectives.use","tags":["Perspectives"],"parameters":[{"name":"tableId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostParameters0Schema"},"example":"string"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","settings":{}}}},"description":"Perspective payload including optional role defaults."},"responses":{"200":{"description":"Perspective saved successfully.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchema"},"example":{"perspective":{"id":"00000000-0000-4000-8000-000000000000","name":"string","tableId":"string","settings":{},"isDefault":true,"createdAt":"string","updatedAt":null},"rolePerspectives":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","tableId":"string","settings":{},"isDefault":true,"createdAt":"string","updatedAt":null,"roleId":"00000000-0000-4000-8000-000000000000","tenantId":null,"organizationId":null,"roleName":null}],"clearedRoleIds":["00000000-0000-4000-8000-000000000000"]}}}},"400":{"description":"Validation failed or invalid roles provided","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Optimistic lock conflict or perspective name already exists","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/perspectives/string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\",\n  \\\"settings\\\": {}\n}\""}],"x-require-features":["perspectives.use"],"x-require-auth":true}},"/dictionaries":{"get":{"operationId":"dictionaries_get_dictionaries","summary":"List dictionaries","description":"Returns dictionaries accessible to the current organization, optionally including inactive records.\n\nRequires features: dictionaries.view","tags":["Dictionaries"],"parameters":[{"name":"includeInactive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesGetParameters0Schema"},"example":"true"}],"responses":{"200":{"description":"Dictionary collection.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","key":"string","name":"string","description":null,"isSystem":true,"isActive":true,"managerVisibility":null,"organizationId":null,"createdAt":"string","updatedAt":null}]}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"500":{"description":"Failed to load dictionaries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/dictionaries\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dictionaries.view"],"x-require-auth":true},"post":{"operationId":"dictionaries_post_dictionaries","summary":"Create dictionary","description":"Registers a dictionary scoped to the current organization.\n\nRequires features: dictionaries.manage","tags":["Dictionaries"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchema"},"example":{"key":"string","name":"string"}}},"description":"Dictionary definition including unique key and display name."},"responses":{"201":{"description":"Dictionary created.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","key":"string","name":"string","description":null,"isSystem":true,"isActive":true,"managerVisibility":null,"organizationId":null,"createdAt":"string","updatedAt":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"409":{"description":"Dictionary key already exists","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to create dictionary","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/dictionaries\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"key\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\"\n}\""}],"x-require-features":["dictionaries.manage"],"x-require-auth":true}},"/dictionaries/{dictionaryId}/entries/{entryId}":{"patch":{"operationId":"dictionaries_patch_dictionaries_dictionaryId_entries_entryId","summary":"Update dictionary entry","description":"Updates the specified dictionary entry using the command bus pipeline.\n\nRequires features: dictionaries.manage","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"entryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchema"},"example":{"color":null,"icon":null}}},"description":"Fields to update on the dictionary entry."},"responses":{"200":{"description":"Dictionary entry updated.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":"string","color":null,"icon":null,"position":1,"isDefault":true,"createdAt":"string","updatedAt":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary or entry not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to update entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://ltscanada-erp.northbound.run/api/dictionaries/00000000-0000-4000-8000-000000000000/entries/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"color\\\": null,\n  \\\"icon\\\": null\n}\""}],"x-require-features":["dictionaries.manage"],"x-require-auth":true},"delete":{"operationId":"dictionaries_delete_dictionaries_dictionaryId_entries_entryId","summary":"Delete dictionary entry","description":"Deletes the specified dictionary entry via the command bus.\n\nRequires features: dictionaries.manage","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"entryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Entry deleted.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary or entry not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to delete entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/dictionaries/00000000-0000-4000-8000-000000000000/entries/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dictionaries.manage"],"x-require-auth":true}},"/dictionaries/{dictionaryId}/entries/reorder":{"post":{"operationId":"dictionaries_post_dictionaries_dictionaryId_entries_reorder","summary":"Reorder dictionary entries","description":"Updates the position of dictionary entries for drag-and-drop reordering.\n\nRequires features: dictionaries.manage","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchema"},"example":{"entries":[{"id":"00000000-0000-4000-8000-000000000000","position":1}]}}},"description":"Array of entry IDs with their new positions."},"responses":{"200":{"description":"Entries reordered.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to reorder entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/dictionaries/00000000-0000-4000-8000-000000000000/entries/reorder\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entries\\\": [\n    {\n      \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"position\\\": 1\n    }\n  ]\n}\""}],"x-require-features":["dictionaries.manage"],"x-require-auth":true}},"/dictionaries/{dictionaryId}/entries":{"get":{"operationId":"dictionaries_get_dictionaries_dictionaryId_entries","summary":"List dictionary entries","description":"Returns entries for the specified dictionary ordered by its configured entry sort mode.\n\nRequires features: dictionaries.view","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Dictionary entries.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":"string","color":null,"icon":null,"position":1,"isDefault":true,"createdAt":"string","updatedAt":null}]}}}},"400":{"description":"Invalid parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to load dictionary entries","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/dictionaries/00000000-0000-4000-8000-000000000000/entries\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dictionaries.view"],"x-require-auth":true},"post":{"operationId":"dictionaries_post_dictionaries_dictionaryId_entries","summary":"Create dictionary entry","description":"Creates a new entry in the specified dictionary.\n\nRequires features: dictionaries.manage","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchema"},"example":{"value":"string","color":null,"icon":null}}},"description":"Entry value, label, and optional presentation metadata."},"responses":{"201":{"description":"Dictionary entry created.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","value":"string","label":"string","color":null,"icon":null,"position":1,"isDefault":true,"createdAt":"string","updatedAt":null}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to create dictionary entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/dictionaries/00000000-0000-4000-8000-000000000000/entries\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"value\\\": \\\"string\\\",\n  \\\"color\\\": null,\n  \\\"icon\\\": null\n}\""}],"x-require-features":["dictionaries.manage"],"x-require-auth":true}},"/dictionaries/{dictionaryId}/entries/set-default":{"post":{"operationId":"dictionaries_post_dictionaries_dictionaryId_entries_set_default","summary":"Set default dictionary entry","description":"Marks the specified entry as the default for this dictionary, clearing any previous default.\n\nRequires features: dictionaries.manage","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostRequestBodyContentApplicationJsonSchema"},"example":{"entryId":"00000000-0000-4000-8000-000000000000"}}},"description":"ID of the entry to set as default."},"responses":{"200":{"description":"Default entry set.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary or entry not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to set default entry","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/dictionaries/00000000-0000-4000-8000-000000000000/entries/set-default\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"entryId\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-features":["dictionaries.manage"],"x-require-auth":true}},"/dictionaries/{dictionaryId}":{"get":{"operationId":"dictionaries_get_dictionaries_dictionaryId","summary":"Get dictionary","description":"Returns details for the specified dictionary, including inheritance flags.\n\nRequires features: dictionaries.view","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Dictionary details.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","key":"string","name":"string","description":null,"isSystem":true,"isActive":true,"managerVisibility":null,"organizationId":null,"createdAt":"string","updatedAt":null}}}},"400":{"description":"Invalid parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to load dictionary","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/dictionaries/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dictionaries.view"],"x-require-auth":true},"patch":{"operationId":"dictionaries_patch_dictionaries_dictionaryId","summary":"Update dictionary","description":"Updates mutable attributes of the dictionary. Currency dictionaries are protected from modification.\n\nRequires features: dictionaries.manage","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchema"},"example":{}}},"description":"Fields to update on the dictionary."},"responses":{"200":{"description":"Dictionary updated.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","key":"string","name":"string","description":null,"isSystem":true,"isActive":true,"managerVisibility":null,"organizationId":null,"createdAt":"string","updatedAt":null}}}},"400":{"description":"Validation failed or protected dictionary","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Dictionary key already exists","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses409ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to update dictionary","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PATCH \"https://ltscanada-erp.northbound.run/api/dictionaries/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-features":["dictionaries.manage"],"x-require-auth":true},"delete":{"operationId":"dictionaries_delete_dictionaries_dictionaryId","summary":"Delete dictionary","description":"Soft deletes the dictionary unless it is the protected currency dictionary.\n\nRequires features: dictionaries.manage","tags":["Dictionaries"],"parameters":[{"name":"dictionaryId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"}],"responses":{"200":{"description":"Dictionary archived.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"400":{"description":"Protected dictionary cannot be deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses400ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Dictionary not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"500":{"description":"Failed to delete dictionary","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses500ContentApplicationJsonSchema"},"example":{"error":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/dictionaries/00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dictionaries.manage"],"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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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.\n\nRequires features: feature_toggles.view","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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/feature_toggles/global?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["feature_toggles.view"],"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.\n\nRequires features: feature_toggles.global.manage","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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/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-features":["feature_toggles.global.manage"],"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.\n\nRequires features: feature_toggles.global.manage","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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["feature_toggles.global.manage"],"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.\n\nRequires features: feature_toggles.global.manage","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"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/feature_toggles/global?id=00000000-0000-4000-8000-000000000000\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["feature_toggles.global.manage"],"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.\n\nRequires features: feature_toggles.view","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/feature_toggles/overrides?page=1&pageSize=25\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["feature_toggles.view"],"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.\n\nRequires features: feature_toggles.manage","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":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/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-features":["feature_toggles.manage"],"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.\n\nRequires features: feature_toggles.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/feature_toggles/global/:id/override\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["feature_toggles.view"],"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.\n\nRequires features: feature_toggles.view","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"}}},"x-autoGenerated":true},"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://ltscanada-erp.northbound.run/api/feature_toggles/global/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["feature_toggles.view"],"x-require-auth":true}},"/progress/active":{"get":{"operationId":"progress_get_progress_active","summary":"GET /progress/active","description":"Requires features: progress.view","tags":["Progress"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressActiveGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressActiveGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressActiveGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/progress/active\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["progress.view"],"x-require-auth":true}},"/progress/jobs":{"get":{"operationId":"progress_get_progress_jobs","summary":"List progressjobs","description":"Returns a paginated collection of progressjobs scoped to the authenticated tenant.\n\nRequires features: progress.view","tags":["Progress"],"parameters":[{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetParameters0Schema"},"example":"string"},{"name":"jobType","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetParameters1Schema"},"example":"string"},{"name":"parentJobId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"includeCompleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetParameters3Schema"},"example":"true"},{"name":"completedSince","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetParameters4Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetParameters5Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetParameters6Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetParameters7Schema"},"example":"string"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetParameters8Schema"},"example":"createdAt"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetParameters9Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetParameters10Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated progressjobs","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","jobType":"string","name":"string","description":null,"status":"string","progressPercent":1,"processedCount":1,"totalCount":null,"etaSeconds":null,"cancellable":true,"startedAt":null,"finishedAt":null,"errorMessage":null,"createdAt":null,"tenantId":"00000000-0000-4000-8000-000000000000","organizationId":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/progress/jobs?page=1&pageSize=20\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["progress.view"],"x-require-auth":true},"post":{"operationId":"progress_post_progress_jobs","summary":"Create progressjob","description":"Creates a new progress job for tracking a long-running operation.\n\nRequires features: progress.create","tags":["Progress"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchema"},"example":{"jobType":"string","name":"string","cancellable":false}}},"description":"Creates a new progress job for tracking a long-running operation."},"responses":{"201":{"description":"ProgressJob created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/progress/jobs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"jobType\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"cancellable\\\": false\n}\""}],"x-require-features":["progress.create"],"x-require-auth":true}},"/progress/jobs/{id}":{"get":{"operationId":"progress_get_progress_jobs_id","summary":"GET /progress/jobs/{id}","description":"Requires features: progress.view","tags":["Progress"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsIdGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/progress/jobs/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["progress.view"],"x-require-auth":true},"put":{"operationId":"progress_put_progress_jobs_id","summary":"PUT /progress/jobs/{id}","description":"Requires features: progress.update","tags":["Progress"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsIdPutParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsIdPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsIdPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsIdPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/progress/jobs/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["progress.update"],"x-require-auth":true},"delete":{"operationId":"progress_delete_progress_jobs_id","summary":"DELETE /progress/jobs/{id}","description":"Requires features: progress.cancel","tags":["Progress"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsIdDeleteParameters0Schema"}}],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsProgressJobsIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/progress/jobs/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["progress.cancel"],"x-require-auth":true}},"/translations/{entityType}/{entityId}":{"get":{"operationId":"translations_get_translations_entityType_entityId","summary":"Get entity translations","description":"Returns the full translation record for a single entity.\n\nRequires features: translations.view","tags":["Translations"],"parameters":[{"name":"entityType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdGetParameters0Schema"},"example":"string"},{"name":"entityId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdGetParameters1Schema"},"example":"string"}],"responses":{"200":{"description":"Translation record found.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"No translations found for this entity","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/translations/string/string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["translations.view"],"x-require-auth":true},"put":{"operationId":"translations_put_translations_entityType_entityId","summary":"Create or update entity translations","description":"Full replacement of translations JSONB for an entity.\n\nRequires features: translations.manage","tags":["Translations"],"parameters":[{"name":"entityType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdPutParameters0Schema"},"example":"string"},{"name":"entityId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdPutParameters1Schema"},"example":"string"}],"responses":{"200":{"description":"Translations saved.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdPutResponses200ContentApplicationJsonSchema"}}}},"400":{"description":"Validation failed","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdPutResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/translations/string/string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["translations.manage"],"x-require-auth":true},"delete":{"operationId":"translations_delete_translations_entityType_entityId","summary":"Delete entity translations","description":"Removes all translations for an entity.\n\nRequires features: translations.manage","tags":["Translations"],"parameters":[{"name":"entityType","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdDeleteParameters0Schema"},"example":"string"},{"name":"entityId","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdDeleteParameters1Schema"},"example":"string"}],"responses":{"204":{"description":"Translations deleted."},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/translations/string/string\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["translations.manage"],"x-require-auth":true}},"/translations/locales":{"get":{"operationId":"translations_get_translations_locales","summary":"List supported translation locales","tags":["Entity Translations"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsLocalesGetResponses200ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/translations/locales\" \\\n  -H \"Accept: application/json\""}]},"put":{"operationId":"translations_put_translations_locales","summary":"Update supported translation locales","tags":["Entity Translations"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsTranslationsLocalesPutResponses200ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://ltscanada-erp.northbound.run/api/translations/locales\" \\\n  -H \"Accept: application/json\""}]}},"/storage-providers/s3/download":{"get":{"operationId":"storage_s3_get_storage_providers_s3_download","summary":"Download file from S3","tags":["S3-Compatible Storage"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsStorageProvidersS3DownloadGetResponses200ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/storage-providers/s3/download\" \\\n  -H \"Accept: application/json\""}]}},"/storage-providers/s3/list":{"get":{"operationId":"storage_s3_get_storage_providers_s3_list","summary":"List S3 objects","tags":["S3-Compatible Storage"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsStorageProvidersS3ListGetResponses200ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://ltscanada-erp.northbound.run/api/storage-providers/s3/list\" \\\n  -H \"Accept: application/json\""}]}},"/storage-providers/s3/signed-url":{"post":{"operationId":"storage_s3_post_storage_providers_s3_signed_url","summary":"Generate S3 pre-signed URL","tags":["S3-Compatible Storage"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsStorageProvidersS3SignedUrlPostResponses201ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/storage-providers/s3/signed-url\" \\\n  -H \"Accept: application/json\""}]}},"/storage-providers/s3/upload":{"post":{"operationId":"storage_s3_post_storage_providers_s3_upload","summary":"Upload file to S3","tags":["S3-Compatible Storage"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsStorageProvidersS3UploadPostResponses201ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://ltscanada-erp.northbound.run/api/storage-providers/s3/upload\" \\\n  -H \"Accept: application/json\""}]}},"/storage-providers/s3/delete":{"delete":{"operationId":"storage_s3_delete_storage_providers_s3_delete","summary":"Delete file from S3","tags":["S3-Compatible Storage"],"parameters":[],"responses":{"204":{"description":"Success"}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://ltscanada-erp.northbound.run/api/storage-providers/s3/delete\" \\\n  -H \"Accept: application/json\""}]}}},"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT","description":"Send an `Authorization: Bearer <token>` header with a valid API token."}},"schemas":{"DocPathsAuthLocaleGetParameters0Schema":{"type":"string","enum":["en","pl","es","de"]},"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"]},"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"},"DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesRolesItems":{"type":"string"},"DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesRolesItems"}},"DocPathsAuthProfileGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"email":{"$ref":"#/components/schemas/DocPathsAuthProfileGetResponses200ContentApplicationJsonSchemaPropertiesEmail"},"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"},"DocPathsAuthUsersGetParameters6SchemaItems":{"type":"string","format":"uuid"},"DocPathsAuthUsersGetParameters6Schema":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAuthUsersGetParameters6SchemaItems"}},"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"},"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"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAuthUsersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","email","name","organizationId","organizationName","tenantId","tenantName","roles"],"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"}},"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"}},"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"},"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"},"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"}},"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"}},"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},"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},"DocPathsAuthFeatureCheckPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAuthFeatureCheckPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAuthFeatureCheckPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["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"}]},"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"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["organizationId","organizationName","tenantId","logoUrl","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"}]},"DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"logoUrl":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutRequestBodyContentApplicationJsonSchemaPropertiesLogoUrl"}},"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"}]},"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"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["organizationId","organizationName","tenantId","logoUrl","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":false},"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":false},"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"}]},"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"},"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":false},"DocPathsDirectoryOrganizationsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"}]},"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"},"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":false},"DocPathsDirectoryOrganizationsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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":false},"DocPathsDirectoryOrganizationsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryOrganizationsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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":false},"DocPathsDirectoryTenantsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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":false},"DocPathsDirectoryTenantsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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":false},"DocPathsDirectoryTenantsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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":false},"DocPathsDirectoryTenantsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDirectoryTenantsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDirectoryTenantsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsConfigsCacheGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsCacheGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsConfigsCachePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsCachePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsConfigsModuleTelemetryGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsConfigsModuleTelemetryDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConfigsModuleTelemetryDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsModuleTelemetryDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsModuleTelemetryDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsConfigsSystemStatusGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsConfigsSystemStatusPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsSystemStatusPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsConfigsUpgradeActionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsConfigsUpgradeActionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConfigsUpgradeActionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConfigsUpgradeActionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConfigsUpgradeActionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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","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"},"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"},"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","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},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"type":"string","enum":["code","custom"]},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelField":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultEditor":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShowInSidebar":{"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"},"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"]},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesShowInSidebarAllOf0":{"type":"boolean"},"DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesShowInSidebar":{"allOf":[{"$ref":"#/components/schemas/DocPathsEntitiesEntitiesPostRequestBodyContentApplicationJsonSchemaPropertiesShowInSidebarAllOf0"}],"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"},"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},"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":false},"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":false},"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":false},"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":false},"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},"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":false},"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":false},"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"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOk":{"type":"boolean"},"DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobPropertiesStatus":{"type":"string","enum":["idle","reindexing","purging","stalled"]},"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"]},"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},"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"},"ok":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOk"},"job":{"$ref":"#/components/schemas/DocPathsQueryIndexStatusGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJob"}},"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":false},"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},"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},"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},"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},"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"},"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"},"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},"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},"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"}},"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":false},"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"}},"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":false},"DocPathsDashboardsLayoutPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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":false},"DocPathsDashboardsRolesWidgetsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsRolesWidgetsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesRoleId":{"type":"string","format":"uuid"},"DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesWidgetIdsItems":{"type":"string","minLength":1},"DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesWidgetIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutRequestBodyContentApplicationJsonSchemaPropertiesWidgetIdsItems"}},"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":false},"DocPathsDashboardsRolesWidgetsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsRolesWidgetsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsRolesWidgetsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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":false},"DocPathsDashboardsUsersWidgetsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsUsersWidgetsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"}},"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":false},"DocPathsDashboardsUsersWidgetsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsUsersWidgetsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsUsersWidgetsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsPropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsPropertiesOperator":{"type":"string","enum":["eq","neq","gt","gte","lt","lte","in","not_in","is_null","is_not_null"]},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsPropertiesValue":{},"DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItems":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsPropertiesField"},"operator":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsPropertiesOperator"},"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostRequestBodyContentApplicationJsonSchemaPropertiesRequestsItemsPropertiesRequestPropertiesFiltersItemsPropertiesValue"}},"required":["field","operator"],"additionalProperties":false},"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"},"DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadata":{"type":"object","properties":{"fetchedAt":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesFetchedAt"},"recordCount":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataBatchPostResponses200ContentApplicationJsonSchemaPropertiesResultsItemsOneOf0PropertiesDataPropertiesMetadataPropertiesRecordCount"}},"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":false},"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},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsPropertiesField":{"type":"string","minLength":1},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsPropertiesOperator":{"type":"string","enum":["eq","neq","gt","gte","lt","lte","in","not_in","is_null","is_not_null"]},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsPropertiesValue":{},"DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItems":{"type":"object","properties":{"field":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsPropertiesField"},"operator":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsPropertiesOperator"},"value":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostRequestBodyContentApplicationJsonSchemaPropertiesFiltersItemsPropertiesValue"}},"required":["field","operator"],"additionalProperties":false},"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"},"DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadata":{"type":"object","properties":{"fetchedAt":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesFetchedAt"},"recordCount":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses200ContentApplicationJsonSchemaPropertiesMetadataPropertiesRecordCount"}},"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":false},"DocPathsDashboardsWidgetsDataPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDashboardsWidgetsDataPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsDataPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsDataPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"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":false},"DocPathsDashboardsLayoutItemIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsLayoutItemIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsLayoutItemIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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":false},"DocPathsDashboardsWidgetsCatalogGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDashboardsWidgetsCatalogGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDashboardsWidgetsCatalogGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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},"DocPathsIntegrationsLogsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsIntegrationsLogsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsLogsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsLogsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsLogsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsLogsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsLogsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsGetParameters0Schema":{"type":"string","maxLength":200},"DocPathsIntegrationsGetParameters1Schema":{"type":"string","maxLength":64},"DocPathsIntegrationsGetParameters2Schema":{"type":"string","maxLength":128},"DocPathsIntegrationsGetParameters3Schema":{"type":"boolean"},"DocPathsIntegrationsGetParameters4Schema":{"type":"string","enum":["healthy","degraded","unhealthy","unconfigured"]},"DocPathsIntegrationsGetParameters5Schema":{"type":"string","enum":["title","category","enabledAt","healthStatus"]},"DocPathsIntegrationsGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsIntegrationsGetParameters7Schema":{"type":"number"},"DocPathsIntegrationsGetParameters8Schema":{"type":"number"},"DocPathsIntegrationsGetParameters9Schema":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategory":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategoryAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems"}},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHub":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKeyAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleIdAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleIdAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleIdAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthorAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompany":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompanyAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersionAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersionAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersionAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersionAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasCredentials":{"type":"boolean"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsEnabled":{"type":"boolean"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersionAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersionAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersion":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersionAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersionAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHealthStatus":{"type":"string","enum":["healthy","degraded","unhealthy","unconfigured"]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAtAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAtAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAtAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMsAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMsAnyOf1":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMs":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMsAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMsAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAtAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAtAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAtAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAtAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAtAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAtAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesTotalCount":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesErrorCount":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesErrorRate":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesDailyCountsItems":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesDailyCounts":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesDailyCountsItems"}},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalytics":{"type":"object","properties":{"lastActivityAt":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesLastActivityAt"},"totalCount":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesTotalCount"},"errorCount":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesErrorCount"},"errorRate":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesErrorRate"},"dailyCounts":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalyticsPropertiesDailyCounts"}},"required":["lastActivityAt","totalCount","errorCount","errorRate","dailyCounts"],"additionalProperties":false},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"category":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCategory"},"tags":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags"},"hub":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHub"},"providerKey":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProviderKey"},"bundleId":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBundleId"},"author":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAuthor"},"company":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompany"},"version":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"hasCredentials":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasCredentials"},"isEnabled":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsEnabled"},"apiVersion":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesApiVersion"},"healthStatus":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHealthStatus"},"lastHealthCheckedAt":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthCheckedAt"},"lastHealthLatencyMs":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastHealthLatencyMs"},"enabledAt":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnabledAt"},"analytics":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAnalytics"}},"required":["id","title","category","tags","hub","providerKey","bundleId","hasCredentials","isEnabled","apiVersion","healthStatus","lastHealthCheckedAt","lastHealthLatencyMs","enabledAt","analytics"],"additionalProperties":false},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesId":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesTitle":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesDescription":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIconAnyOf1"}]},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIntegrationCount":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesEnabledCount":{"type":"number"},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesId"},"title":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesDescription"},"icon":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIcon"},"integrationCount":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesIntegrationCount"},"enabledCount":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItemsPropertiesEnabledCount"}},"required":["id","title","description","icon","integrationCount","enabledCount"],"additionalProperties":false},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundlesItems"}},"DocPathsIntegrationsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"bundles":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses200ContentApplicationJsonSchemaPropertiesBundles"}},"required":["items","total","totalPages","bundles"],"additionalProperties":false},"DocPathsIntegrationsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdCredentialsGetParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdCredentialsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsIntegrationsIdCredentialsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdCredentialsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdCredentialsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdCredentialsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdCredentialsPutParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdCredentialsPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsIntegrationsIdCredentialsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdCredentialsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdCredentialsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdCredentialsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdCredentialsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdHealthPostParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdHealthPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsIntegrationsIdHealthPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdHealthPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdHealthPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdHealthPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdHealthPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdGetParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsIntegrationsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdStatePutParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdStatePutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsIntegrationsIdStatePutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdStatePutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdStatePutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdStatePutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdStatePutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdVersionPutParameters0Schema":{"type":"string"},"DocPathsIntegrationsIdVersionPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsIntegrationsIdVersionPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdVersionPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsIntegrationsIdVersionPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsIntegrationsIdVersionPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsIntegrationsIdVersionPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesObjectTypesGetParameters0Schema":{"type":"string","minLength":1},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModule":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityType":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelKey":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesId":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesLabelKey":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesVariant":{"type":"string","enum":["default","secondary","destructive","outline"]},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesIcon":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesCommandId":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesHref":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesIsTerminal":{"type":"boolean"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesConfirmRequired":{"type":"boolean"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesConfirmMessage":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesId"},"labelKey":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesLabelKey"},"variant":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesVariant"},"icon":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesIcon"},"commandId":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesCommandId"},"href":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesHref"},"isTerminal":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesIsTerminal"},"confirmRequired":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesConfirmRequired"},"confirmMessage":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItemsPropertiesConfirmMessage"}},"required":["id","labelKey"],"additionalProperties":false},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsItems"}},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"module":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModule"},"entityType":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityType"},"labelKey":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelKey"},"icon":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"actions":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActions"}},"required":["module","entityType","labelKey","icon","actions"],"additionalProperties":false},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsMessagesObjectTypesGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsMessagesObjectTypesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesObjectTypesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesObjectTypesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesObjectTypesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesGetParameters0Schema":{"type":"string","enum":["inbox","sent","drafts","archived","all"]},"DocPathsMessagesGetParameters1Schema":{"type":"string","enum":["unread","read","archived"]},"DocPathsMessagesGetParameters2Schema":{"type":"string"},"DocPathsMessagesGetParameters3Schema":{"type":"string","enum":["public","internal"]},"DocPathsMessagesGetParameters4Schema":{"type":"string"},"DocPathsMessagesGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsMessagesGetParameters6Schema":{"type":"string","format":"email"},"DocPathsMessagesGetParameters10Schema":{"type":"string","format":"uuid"},"DocPathsMessagesGetParameters11Schema":{"type":"string","maxLength":200},"DocPathsMessagesGetParameters12Schema":{"type":"string","format":"datetime"},"DocPathsMessagesGetParameters13Schema":{"type":"number"},"DocPathsMessagesGetParameters14Schema":{"type":"number"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibilityAnyOf0":{"type":"null"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibilityAnyOf1":{"type":"string","enum":["public","internal"]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibilityAnyOf1"}]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityTypeAnyOf0":{"type":"null"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityTypeAnyOf1":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityTypeAnyOf1"}]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityIdAnyOf0":{"type":"null"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityIdAnyOf1"}]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalEmailAnyOf0":{"type":"null"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalEmailAnyOf1":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalEmailAnyOf1"}]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalNameAnyOf0":{"type":"null"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalNameAnyOf1":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalNameAnyOf1"}]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubject":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyPreview":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderUserId":{"type":"string","format":"uuid"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderNameAnyOf0":{"type":"null"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderNameAnyOf1":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderNameAnyOf1"}]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderEmailAnyOf0":{"type":"null"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderEmailAnyOf1":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderEmailAnyOf1"}]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasObjects":{"type":"boolean"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesObjectCount":{"type":"number"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasAttachments":{"type":"boolean"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentCount":{"type":"number"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecipientCount":{"type":"number"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasActions":{"type":"boolean"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTakenAnyOf0":{"type":"null"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTakenAnyOf1":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTaken":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTakenAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTakenAnyOf1"}]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf0":{"type":"null"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf1":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf1"}]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAtAnyOf0":{"type":"null"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAtAnyOf1":{"type":"string"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAtAnyOf1"}]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThreadIdAnyOf0":{"type":"null"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThreadIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThreadId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThreadIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThreadIdAnyOf1"}]},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"type":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType"},"visibility":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVisibility"},"sourceEntityType":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityType"},"sourceEntityId":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceEntityId"},"externalEmail":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalEmail"},"externalName":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalName"},"subject":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSubject"},"bodyPreview":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBodyPreview"},"senderUserId":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderUserId"},"senderName":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderName"},"senderEmail":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSenderEmail"},"priority":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriority"},"status":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"hasObjects":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasObjects"},"objectCount":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesObjectCount"},"hasAttachments":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasAttachments"},"attachmentCount":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttachmentCount"},"recipientCount":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecipientCount"},"hasActions":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHasActions"},"actionTaken":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionTaken"},"sentAt":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAt"},"readAt":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReadAt"},"threadId":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThreadId"}},"required":["id","type","subject","bodyPreview","senderUserId","priority","status","hasObjects","objectCount","hasAttachments","attachmentCount","recipientCount","hasActions"],"additionalProperties":false},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsMessagesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"page":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"total":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"totalPages":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","page","pageSize","total","totalPages"],"additionalProperties":false},"DocPathsMessagesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesTypeAllOf0":{"type":"string"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesType":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesTypeAllOf0"}],"default":"default"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesVisibilityAnyOf0":{"type":"null"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesVisibilityAnyOf1":{"type":"string","enum":["public","internal"]},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesVisibilityAnyOf1"}]},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityType":{"type":"string","minLength":1},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityId":{"type":"string","format":"uuid"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesExternalEmail":{"type":"string","format":"email"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesExternalName":{"type":"string","minLength":1,"maxLength":255},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsAllOf0ItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsAllOf0ItemsPropertiesTypeAllOf0":{"type":"string","enum":["to","cc","bcc"]},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsAllOf0ItemsPropertiesType":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsAllOf0ItemsPropertiesTypeAllOf0"}],"default":"to"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsAllOf0Items":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsAllOf0ItemsPropertiesUserId"},"type":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsAllOf0ItemsPropertiesType"}},"required":["userId"],"additionalProperties":false},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsAllOf0":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsAllOf0Items"},"maxItems":100},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipients":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsAllOf0"}],"default":[]},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSubjectAllOf0":{"type":"string","maxLength":500},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSubject":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSubjectAllOf0"}],"default":""},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesBodyAllOf0":{"type":"string","maxLength":50000},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesBody":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesBodyAllOf0"}],"default":""},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesBodyFormatAllOf0":{"type":"string","enum":["text","markdown"]},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesBodyFormat":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesBodyFormatAllOf0"}],"default":"text"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesPriorityAllOf0":{"type":"string","enum":["low","normal","high","urgent"]},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesPriority":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesPriorityAllOf0"}],"default":"normal"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityModule":{"type":"string","minLength":1},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityType":{"type":"string","minLength":1},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionRequiredAllOf0":{"type":"boolean"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionRequired":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionRequiredAllOf0"}],"default":false},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionType":{"type":"string"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionLabel":{"type":"string"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItems":{"type":"object","properties":{"entityModule":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityModule"},"entityType":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityType"},"entityId":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityId"},"actionRequired":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionRequired"},"actionType":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionType"},"actionLabel":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionLabel"}},"required":["entityModule","entityType","entityId"],"additionalProperties":false},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjects":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjectsItems"}},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems":{"type":"string","format":"uuid"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems"}},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentRecordId":{"type":"string","minLength":1,"maxLength":255},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesId":{"type":"string","minLength":1},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesLabel":{"type":"string","minLength":1},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesLabelKey":{"type":"string"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesVariant":{"type":"string","enum":["default","secondary","destructive","outline","ghost"]},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesIcon":{"type":"string"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesCommandId":{"type":"string"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesHref":{"type":"string"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesIsTerminal":{"type":"boolean"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesConfirmRequired":{"type":"boolean"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesConfirmMessage":{"type":"string"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesLabel"},"labelKey":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesLabelKey"},"variant":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesVariant"},"icon":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesIcon"},"commandId":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesCommandId"},"href":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesHref"},"isTerminal":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesIsTerminal"},"confirmRequired":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesConfirmRequired"},"confirmMessage":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesConfirmMessage"}},"required":["id","label"],"additionalProperties":false},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItems"}},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesPrimaryActionId":{"type":"string"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesExpiresAt":{"type":"string","format":"datetime"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionData":{"type":"object","properties":{"actions":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActions"},"primaryActionId":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesPrimaryActionId"},"expiresAt":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesExpiresAt"}},"required":["actions"],"additionalProperties":false},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmailAllOf0":{"type":"boolean"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmail":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmailAllOf0"}],"default":false},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesParentMessageId":{"type":"string","format":"uuid"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesIsDraftAllOf0":{"type":"boolean"},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesIsDraft":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesIsDraftAllOf0"}],"default":false},"DocPathsMessagesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesType"},"visibility":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesVisibility"},"sourceEntityType":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityType"},"sourceEntityId":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityId"},"externalEmail":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesExternalEmail"},"externalName":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesExternalName"},"recipients":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesRecipients"},"subject":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSubject"},"body":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesBody"},"bodyFormat":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesBodyFormat"},"priority":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesPriority"},"objects":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesObjects"},"attachmentIds":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds"},"attachmentRecordId":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentRecordId"},"actionData":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesActionData"},"sendViaEmail":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmail"},"parentMessageId":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesParentMessageId"},"isDraft":{"$ref":"#/components/schemas/DocPathsMessagesPostRequestBodyContentApplicationJsonSchemaPropertiesIsDraft"}},"additionalProperties":false},"DocPathsMessagesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesPostResponses201ContentApplicationJsonSchemaPropertiesThreadIdAnyOf0":{"type":"null"},"DocPathsMessagesPostResponses201ContentApplicationJsonSchemaPropertiesThreadIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMessagesPostResponses201ContentApplicationJsonSchemaPropertiesThreadId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesPostResponses201ContentApplicationJsonSchemaPropertiesThreadIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesPostResponses201ContentApplicationJsonSchemaPropertiesThreadIdAnyOf1"}]},"DocPathsMessagesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"threadId":{"$ref":"#/components/schemas/DocPathsMessagesPostResponses201ContentApplicationJsonSchemaPropertiesThreadId"}},"required":["id"],"additionalProperties":false},"DocPathsMessagesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType":{"type":"string"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModule":{"type":"string"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelKey":{"type":"string"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"type":"string"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllowReply":{"type":"boolean"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllowForward":{"type":"boolean"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsExpireAfterHoursAnyOf0":{"type":"null"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsExpireAfterHoursAnyOf1":{"type":"number"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsExpireAfterHours":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsExpireAfterHoursAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsExpireAfterHoursAnyOf1"}]},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf0":{"type":"null"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesListItemComponentAnyOf0":{"type":"null"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesListItemComponentAnyOf1":{"type":"string"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesListItemComponent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesListItemComponentAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesListItemComponentAnyOf1"}]},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesContentComponentAnyOf0":{"type":"null"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesContentComponentAnyOf1":{"type":"string"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesContentComponent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesContentComponentAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesContentComponentAnyOf1"}]},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesActionsComponentAnyOf0":{"type":"null"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesActionsComponentAnyOf1":{"type":"string"},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesActionsComponent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesActionsComponentAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesActionsComponentAnyOf1"}]},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1":{"type":"object","properties":{"listItemComponent":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesListItemComponent"},"contentComponent":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesContentComponent"},"actionsComponent":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1PropertiesActionsComponent"}},"additionalProperties":false},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUi":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUiAnyOf1"}]},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType"},"module":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesModule"},"labelKey":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelKey"},"icon":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"color":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"allowReply":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllowReply"},"allowForward":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllowForward"},"actionsExpireAfterHours":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesActionsExpireAfterHours"},"ui":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUi"}},"required":["type","module","labelKey","icon","allowReply","allowForward"],"additionalProperties":false},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsMessagesTypesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesTypesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesTypesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesTypesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesTypesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesUnreadCountGetResponses200ContentApplicationJsonSchemaPropertiesUnreadCount":{"type":"number"},"DocPathsMessagesUnreadCountGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"unreadCount":{"$ref":"#/components/schemas/DocPathsMessagesUnreadCountGetResponses200ContentApplicationJsonSchemaPropertiesUnreadCount"}},"required":["unreadCount"],"additionalProperties":false},"DocPathsMessagesUnreadCountGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesUnreadCountGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesUnreadCountGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdActionsActionIdPostParameters0Schema":{"type":"string"},"DocPathsMessagesIdActionsActionIdPostParameters1Schema":{"type":"string"},"DocPathsMessagesIdActionsActionIdPostRequestBodyContentApplicationJsonSchema":{"type":"object","additionalProperties":true},"DocPathsMessagesIdActionsActionIdPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdActionsActionIdPostResponses200ContentApplicationJsonSchemaPropertiesActionId":{"type":"string"},"DocPathsMessagesIdActionsActionIdPostResponses200ContentApplicationJsonSchemaPropertiesResult":{"type":"object","additionalProperties":true},"DocPathsMessagesIdActionsActionIdPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"actionId":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostResponses200ContentApplicationJsonSchemaPropertiesActionId"},"result":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostResponses200ContentApplicationJsonSchemaPropertiesResult"}},"required":["ok","actionId"],"additionalProperties":false},"DocPathsMessagesIdActionsActionIdPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdActionsActionIdPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdActionsActionIdPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdActionsActionIdPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdActionsActionIdPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdActionsActionIdPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsMessagesIdActionsActionIdPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsMessagesIdActionsActionIdPostResponses410ContentApplicationJsonSchema":{"type":"object"},"DocPathsMessagesIdArchivePutParameters0Schema":{"type":"string"},"DocPathsMessagesIdArchivePutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdArchivePutResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdArchivePutResponses200ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsMessagesIdArchivePutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutResponses200ContentApplicationJsonSchemaPropertiesOk"},"id":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutResponses200ContentApplicationJsonSchemaPropertiesId"},"message":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutResponses200ContentApplicationJsonSchemaPropertiesMessage"}},"required":["ok"],"additionalProperties":false},"DocPathsMessagesIdArchivePutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdArchivePutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdArchivePutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdArchivePutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdArchivePutResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdArchivePutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdArchivePutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdArchivePutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdArchiveDeleteParameters0Schema":{"type":"string"},"DocPathsMessagesIdArchiveDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdArchiveDeleteResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdArchiveDeleteResponses200ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsMessagesIdArchiveDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"},"id":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteResponses200ContentApplicationJsonSchemaPropertiesId"},"message":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteResponses200ContentApplicationJsonSchemaPropertiesMessage"}},"required":["ok"],"additionalProperties":false},"DocPathsMessagesIdArchiveDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdArchiveDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdArchiveDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdArchiveDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdArchiveDeleteResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdArchiveDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdArchiveDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdArchiveDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsGetParameters0Schema":{"type":"string"},"DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItemsPropertiesFileName":{"type":"string"},"DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItemsPropertiesFileSize":{"type":"number"},"DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItemsPropertiesMimeType":{"type":"string"},"DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItemsPropertiesUrl":{"type":"string"},"DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItemsPropertiesId"},"fileName":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItemsPropertiesFileName"},"fileSize":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItemsPropertiesFileSize"},"mimeType":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItemsPropertiesMimeType"},"url":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItemsPropertiesUrl"}},"required":["id","fileName","fileSize","mimeType","url"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachmentsItems"}},"DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"attachments":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesAttachments"}},"required":["attachments"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdAttachmentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsGetResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdAttachmentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdAttachmentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses403ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsGetResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdAttachmentsGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdAttachmentsGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsPostParameters0Schema":{"type":"string"},"DocPathsMessagesIdAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems":{"type":"string","format":"uuid"},"DocPathsMessagesIdAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems"},"minItems":1,"maxItems":100},"DocPathsMessagesIdAttachmentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"attachmentIds":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds"}},"required":["attachmentIds"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsMessagesIdAttachmentsPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"id":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesId"},"message":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesMessage"}},"required":["ok"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdAttachmentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdAttachmentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsPostResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdAttachmentsPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdAttachmentsPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsPostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdAttachmentsPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdAttachmentsPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses409ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsDeleteParameters0Schema":{"type":"string"},"DocPathsMessagesIdAttachmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId":{"type":"string","format":"uuid"},"DocPathsMessagesIdAttachmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems":{"type":"string","format":"uuid"},"DocPathsMessagesIdAttachmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems"},"minItems":1,"maxItems":100},"DocPathsMessagesIdAttachmentsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"attachmentId":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAttachmentId"},"attachmentIds":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds"}},"additionalProperties":false},"DocPathsMessagesIdAttachmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdAttachmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdAttachmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsMessagesIdAttachmentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"},"id":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesId"},"message":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesMessage"}},"required":["ok"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdAttachmentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdAttachmentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsDeleteResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdAttachmentsDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdAttachmentsDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdAttachmentsDeleteResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdAttachmentsDeleteResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdAttachmentsDeleteResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses409ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdAttachmentsDeleteResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConfirmationGetParameters0Schema":{"type":"string"},"DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesMessageId":{"type":"string","format":"uuid"},"DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmed":{"type":"boolean"},"DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedAtAnyOf0":{"type":"null"},"DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedAtAnyOf1":{"type":"string"},"DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedAtAnyOf1"}]},"DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedByUserIdAnyOf0":{"type":"null"},"DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedByUserIdAnyOf1"}]},"DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"messageId":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesMessageId"},"confirmed":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmed"},"confirmedAt":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedAt"},"confirmedByUserId":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses200ContentApplicationJsonSchemaPropertiesConfirmedByUserId"}},"required":["messageId","confirmed","confirmedAt","confirmedByUserId"],"additionalProperties":false},"DocPathsMessagesIdConfirmationGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConfirmationGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConfirmationGetResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdConfirmationGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConfirmationGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses403ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConfirmationGetResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdConfirmationGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConfirmationGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConfirmationGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationArchivePutParameters0Schema":{"type":"string"},"DocPathsMessagesIdConversationArchivePutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdConversationArchivePutResponses200ContentApplicationJsonSchemaPropertiesAffectedCount":{"type":"number"},"DocPathsMessagesIdConversationArchivePutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchivePutResponses200ContentApplicationJsonSchemaPropertiesOk"},"affectedCount":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchivePutResponses200ContentApplicationJsonSchemaPropertiesAffectedCount"}},"required":["ok","affectedCount"],"additionalProperties":false},"DocPathsMessagesIdConversationArchivePutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationArchivePutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchivePutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationArchivePutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationArchivePutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchivePutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationArchivePutResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdConversationArchivePutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationArchivePutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchivePutResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchivePutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationArchiveDeleteParameters0Schema":{"type":"string"},"DocPathsMessagesIdConversationArchiveDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdConversationArchiveDeleteResponses200ContentApplicationJsonSchemaPropertiesAffectedCount":{"type":"number"},"DocPathsMessagesIdConversationArchiveDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchiveDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"},"affectedCount":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchiveDeleteResponses200ContentApplicationJsonSchemaPropertiesAffectedCount"}},"required":["ok","affectedCount"],"additionalProperties":false},"DocPathsMessagesIdConversationArchiveDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationArchiveDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchiveDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationArchiveDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationArchiveDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchiveDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationArchiveDeleteResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdConversationArchiveDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationArchiveDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchiveDeleteResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationArchiveDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationReadPutParameters0Schema":{"type":"string"},"DocPathsMessagesIdConversationReadPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdConversationReadPutResponses200ContentApplicationJsonSchemaPropertiesAffectedCount":{"type":"number"},"DocPathsMessagesIdConversationReadPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadPutResponses200ContentApplicationJsonSchemaPropertiesOk"},"affectedCount":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadPutResponses200ContentApplicationJsonSchemaPropertiesAffectedCount"}},"required":["ok","affectedCount"],"additionalProperties":false},"DocPathsMessagesIdConversationReadPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationReadPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationReadPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationReadPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationReadPutResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdConversationReadPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationReadPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadPutResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationReadDeleteParameters0Schema":{"type":"string"},"DocPathsMessagesIdConversationReadDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdConversationReadDeleteResponses200ContentApplicationJsonSchemaPropertiesAffectedCount":{"type":"number"},"DocPathsMessagesIdConversationReadDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"},"affectedCount":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadDeleteResponses200ContentApplicationJsonSchemaPropertiesAffectedCount"}},"required":["ok","affectedCount"],"additionalProperties":false},"DocPathsMessagesIdConversationReadDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationReadDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationReadDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationReadDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationReadDeleteResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdConversationReadDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationReadDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadDeleteResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationReadDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationDeleteParameters0Schema":{"type":"string"},"DocPathsMessagesIdConversationDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdConversationDeleteResponses200ContentApplicationJsonSchemaPropertiesAffectedCount":{"type":"number"},"DocPathsMessagesIdConversationDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"},"affectedCount":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationDeleteResponses200ContentApplicationJsonSchemaPropertiesAffectedCount"}},"required":["ok","affectedCount"],"additionalProperties":false},"DocPathsMessagesIdConversationDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdConversationDeleteResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdConversationDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdConversationDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationDeleteResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdConversationDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdForwardPreviewGetParameters0Schema":{"type":"string"},"DocPathsMessagesIdForwardPreviewGetResponses200ContentApplicationJsonSchemaPropertiesSubject":{"type":"string"},"DocPathsMessagesIdForwardPreviewGetResponses200ContentApplicationJsonSchemaPropertiesBody":{"type":"string"},"DocPathsMessagesIdForwardPreviewGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"subject":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses200ContentApplicationJsonSchemaPropertiesSubject"},"body":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses200ContentApplicationJsonSchemaPropertiesBody"}},"required":["subject","body"],"additionalProperties":false},"DocPathsMessagesIdForwardPreviewGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdForwardPreviewGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdForwardPreviewGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdForwardPreviewGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdForwardPreviewGetResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdForwardPreviewGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdForwardPreviewGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdForwardPreviewGetResponses413ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdForwardPreviewGetResponses413ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdForwardPreviewGetResponses413ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses413ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPreviewGetResponses413ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdForwardPostParameters0Schema":{"type":"string"},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesTypeAllOf0":{"type":"string","enum":["to","cc","bcc"]},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesType":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesTypeAllOf0"}],"default":"to"},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItems":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesUserId"},"type":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesType"}},"required":["userId"],"additionalProperties":false},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesRecipients":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItems"},"minItems":1,"maxItems":100},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesBody":{"type":"string","maxLength":50000},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesAdditionalBody":{"type":"string","maxLength":10000},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesIncludeAttachmentsAllOf0":{"type":"boolean"},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesIncludeAttachments":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesIncludeAttachmentsAllOf0"}],"default":true},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmailAllOf0":{"type":"boolean"},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmail":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmailAllOf0"}],"default":false},"DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"recipients":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesRecipients"},"body":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesBody"},"additionalBody":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesAdditionalBody"},"includeAttachments":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesIncludeAttachments"},"sendViaEmail":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmail"}},"required":["recipients"],"additionalProperties":false},"DocPathsMessagesIdForwardPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdForwardPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsMessagesIdForwardPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdForwardPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdForwardPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdForwardPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdForwardPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdForwardPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsMessagesIdForwardPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsMessagesIdForwardPostResponses413ContentApplicationJsonSchema":{"type":"object"},"DocPathsMessagesIdReadPutParameters0Schema":{"type":"string"},"DocPathsMessagesIdReadPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdReadPutResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdReadPutResponses200ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsMessagesIdReadPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutResponses200ContentApplicationJsonSchemaPropertiesOk"},"id":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutResponses200ContentApplicationJsonSchemaPropertiesId"},"message":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutResponses200ContentApplicationJsonSchemaPropertiesMessage"}},"required":["ok"],"additionalProperties":false},"DocPathsMessagesIdReadPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdReadPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdReadPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdReadPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdReadPutResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdReadPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdReadPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdReadPutResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdReadDeleteParameters0Schema":{"type":"string"},"DocPathsMessagesIdReadDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdReadDeleteResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdReadDeleteResponses200ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsMessagesIdReadDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"},"id":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteResponses200ContentApplicationJsonSchemaPropertiesId"},"message":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteResponses200ContentApplicationJsonSchemaPropertiesMessage"}},"required":["ok"],"additionalProperties":false},"DocPathsMessagesIdReadDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdReadDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdReadDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdReadDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdReadDeleteResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdReadDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdReadDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdReadDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdReplyPostParameters0Schema":{"type":"string"},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesBody":{"type":"string","minLength":1,"maxLength":50000},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesBodyFormatAllOf0":{"type":"string","enum":["text","markdown"]},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesBodyFormat":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesBodyFormatAllOf0"}],"default":"text"},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesTypeAllOf0":{"type":"string","enum":["to","cc","bcc"]},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesType":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesTypeAllOf0"}],"default":"to"},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItems":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesUserId"},"type":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesType"}},"required":["userId"],"additionalProperties":false},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesRecipients":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItems"},"maxItems":100},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems":{"type":"string","format":"uuid"},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems"}},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentRecordId":{"type":"string","minLength":1,"maxLength":255},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesReplyAllAllOf0":{"type":"boolean"},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesReplyAll":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesReplyAllAllOf0"}],"default":false},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmailAllOf0":{"type":"boolean"},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmail":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmailAllOf0"}],"default":false},"DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"body":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesBody"},"bodyFormat":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesBodyFormat"},"recipients":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesRecipients"},"attachmentIds":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds"},"attachmentRecordId":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentRecordId"},"replyAll":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesReplyAll"},"sendViaEmail":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmail"}},"required":["body"],"additionalProperties":false},"DocPathsMessagesIdReplyPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdReplyPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsMessagesIdReplyPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdReplyPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdReplyPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdReplyPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdReplyPostResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdReplyPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdReplyPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdReplyPostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdReplyPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdReplyPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses409ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdReplyPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdGetParameters0Schema":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesType":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesIsDraft":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesCanEditDraft":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesCanArchive":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesIsArchived":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesVisibilityAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesVisibilityAnyOf1":{"type":"string","enum":["public","internal"]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesVisibilityAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityTypeAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityTypeAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityTypeAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityIdAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityIdAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalEmailAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalEmailAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalEmailAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalNameAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalNameAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalNameAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesLabelKey":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesIcon":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesColorAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesColorAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesColorAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesAllowReply":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesAllowForward":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesListItemComponentAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesListItemComponentAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesListItemComponent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesListItemComponentAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesListItemComponentAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesContentComponentAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesContentComponentAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesContentComponent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesContentComponentAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesContentComponentAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesActionsComponentAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesActionsComponentAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesActionsComponent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesActionsComponentAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesActionsComponentAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1":{"type":"object","properties":{"listItemComponent":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesListItemComponent"},"contentComponent":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesContentComponent"},"actionsComponent":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1PropertiesActionsComponent"}},"additionalProperties":false},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUi":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUiAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinition":{"type":"object","properties":{"labelKey":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesLabelKey"},"icon":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesIcon"},"color":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesColor"},"allowReply":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesAllowReply"},"allowForward":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesAllowForward"},"ui":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinitionPropertiesUi"}},"required":["labelKey","icon","allowReply","allowForward"],"additionalProperties":false},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadIdAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadIdAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesParentMessageIdAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesParentMessageIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesParentMessageId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesParentMessageIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesParentMessageIdAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderUserId":{"type":"string","format":"uuid"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderNameAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderNameAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderNameAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderEmailAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderEmailAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderEmailAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSubject":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesBody":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesBodyFormat":{"type":"string","enum":["text","markdown"]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesPriority":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSentAtAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSentAtAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSentAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSentAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSentAtAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesId":{"type":"string","minLength":1},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesLabel":{"type":"string","minLength":1},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesLabelKey":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesVariant":{"type":"string","enum":["default","secondary","destructive","outline","ghost"]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesIcon":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesCommandId":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesHref":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesIsTerminal":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesConfirmRequired":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesConfirmMessage":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesLabel"},"labelKey":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesLabelKey"},"variant":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesVariant"},"icon":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesIcon"},"commandId":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesCommandId"},"href":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesHref"},"isTerminal":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesIsTerminal"},"confirmRequired":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesConfirmRequired"},"confirmMessage":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesConfirmMessage"}},"required":["id","label"],"additionalProperties":false},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActionsItems"}},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesPrimaryActionId":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesExpiresAt":{"type":"string","format":"datetime"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1":{"type":"object","properties":{"actions":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesActions"},"primaryActionId":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesPrimaryActionId"},"expiresAt":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1PropertiesExpiresAt"}},"required":["actions"],"additionalProperties":false},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionData":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionDataAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTaken":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenAtAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenAtAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenAtAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenByUserIdAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenByUserIdAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesType":{"type":"string","enum":["to","cc","bcc"]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesStatus":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesReadAtAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesReadAtAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesReadAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesReadAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesReadAtAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItems":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesUserId"},"type":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesType"},"status":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesStatus"},"readAt":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesReadAt"}},"required":["userId","type","status"],"additionalProperties":false},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipients":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipientsItems"}},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityModule":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityType":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionRequired":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionTypeAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionTypeAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionTypeAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionLabelAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionLabelAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionLabelAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesSnapshotAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesSnapshotAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesTitle":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesSubtitle":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesStatus":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesStatusColor":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesMetadataAdditionalProperties":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesMetadata":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesMetadataAdditionalProperties"}},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1":{"type":"object","properties":{"title":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesTitle"},"subtitle":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesSubtitle"},"status":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesStatus"},"statusColor":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesStatusColor"},"metadata":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1PropertiesMetadata"}},"required":["title"],"additionalProperties":false},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreview":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreviewAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesId"},"entityModule":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityModule"},"entityType":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityType"},"entityId":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityId"},"actionRequired":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionRequired"},"actionType":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionType"},"actionLabel":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionLabel"},"snapshot":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesSnapshot"},"preview":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesPreview"}},"required":["id","entityModule","entityType","entityId","actionRequired"],"additionalProperties":false},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjects":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjectsItems"}},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderUserId":{"type":"string","format":"uuid"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderNameAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderNameAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderNameAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderEmailAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderEmailAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderEmailAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesBody":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesBodyFormat":{"type":"string","enum":["text","markdown"]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSentAtAnyOf0":{"type":"null"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSentAtAnyOf1":{"type":"string"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSentAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSentAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSentAtAnyOf1"}]},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesId"},"senderUserId":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderUserId"},"senderName":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderName"},"senderEmail":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSenderEmail"},"body":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesBody"},"bodyFormat":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesBodyFormat"},"sentAt":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItemsPropertiesSentAt"}},"required":["id","senderUserId","body"],"additionalProperties":false},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThread":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadItems"}},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesIsRead":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesConversationArchived":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesConversationAllUnread":{"type":"boolean"},"DocPathsMessagesIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesId"},"updatedAt":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"},"type":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesType"},"isDraft":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesIsDraft"},"canEditDraft":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesCanEditDraft"},"canArchive":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesCanArchive"},"isArchived":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesIsArchived"},"visibility":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesVisibility"},"sourceEntityType":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityType"},"sourceEntityId":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSourceEntityId"},"externalEmail":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalEmail"},"externalName":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesExternalName"},"typeDefinition":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesTypeDefinition"},"threadId":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThreadId"},"parentMessageId":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesParentMessageId"},"senderUserId":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderUserId"},"senderName":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderName"},"senderEmail":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSenderEmail"},"subject":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSubject"},"body":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesBody"},"bodyFormat":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesBodyFormat"},"priority":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesPriority"},"sentAt":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesSentAt"},"actionData":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionData"},"actionTaken":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTaken"},"actionTakenAt":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenAt"},"actionTakenByUserId":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesActionTakenByUserId"},"recipients":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesRecipients"},"objects":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesObjects"},"thread":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesThread"},"isRead":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesIsRead"},"conversationArchived":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesConversationArchived"},"conversationAllUnread":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses200ContentApplicationJsonSchemaPropertiesConversationAllUnread"}},"required":["id","type","isDraft","canEditDraft","canArchive","isArchived","typeDefinition","senderUserId","subject","body","bodyFormat","priority","recipients","objects","thread","isRead","conversationArchived","conversationAllUnread"],"additionalProperties":false},"DocPathsMessagesIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdGetResponses403ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses403ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdGetResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdPatchParameters0Schema":{"type":"string"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesType":{"type":"string"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesVisibilityAnyOf0":{"type":"null"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesVisibilityAnyOf1":{"type":"string","enum":["public","internal"]},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesVisibilityAnyOf1"}]},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityType":{"type":"string","minLength":1},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityId":{"type":"string","format":"uuid"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesExternalEmail":{"type":"string","format":"email"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesExternalName":{"type":"string","minLength":1,"maxLength":255},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesUserId":{"type":"string","format":"uuid"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesTypeAllOf0":{"type":"string","enum":["to","cc","bcc"]},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesType":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesTypeAllOf0"}],"default":"to"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItems":{"type":"object","properties":{"userId":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesUserId"},"type":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItemsPropertiesType"}},"required":["userId"],"additionalProperties":false},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesRecipients":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesRecipientsItems"}},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSubject":{"type":"string","maxLength":500},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesBody":{"type":"string","maxLength":50000},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesBodyFormat":{"type":"string","enum":["text","markdown"]},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesPriority":{"type":"string","enum":["low","normal","high","urgent"]},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityModule":{"type":"string","minLength":1},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityType":{"type":"string","minLength":1},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionRequiredAllOf0":{"type":"boolean"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionRequired":{"allOf":[{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionRequiredAllOf0"}],"default":false},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionType":{"type":"string"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionLabel":{"type":"string"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItems":{"type":"object","properties":{"entityModule":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityModule"},"entityType":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityType"},"entityId":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesEntityId"},"actionRequired":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionRequired"},"actionType":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionType"},"actionLabel":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItemsPropertiesActionLabel"}},"required":["entityModule","entityType","entityId"],"additionalProperties":false},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjects":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjectsItems"}},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems":{"type":"string","format":"uuid"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems"}},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesId":{"type":"string","minLength":1},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesLabel":{"type":"string","minLength":1},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesLabelKey":{"type":"string"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesVariant":{"type":"string","enum":["default","secondary","destructive","outline","ghost"]},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesIcon":{"type":"string"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesCommandId":{"type":"string"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesHref":{"type":"string"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesIsTerminal":{"type":"boolean"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesConfirmRequired":{"type":"boolean"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesConfirmMessage":{"type":"string"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesLabel"},"labelKey":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesLabelKey"},"variant":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesVariant"},"icon":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesIcon"},"commandId":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesCommandId"},"href":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesHref"},"isTerminal":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesIsTerminal"},"confirmRequired":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesConfirmRequired"},"confirmMessage":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItemsPropertiesConfirmMessage"}},"required":["id","label"],"additionalProperties":false},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActionsItems"}},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesPrimaryActionId":{"type":"string"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesExpiresAt":{"type":"string","format":"datetime"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionData":{"type":"object","properties":{"actions":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesActions"},"primaryActionId":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesPrimaryActionId"},"expiresAt":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionDataPropertiesExpiresAt"}},"required":["actions"],"additionalProperties":false},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmail":{"type":"boolean"},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsDraft":{"type":"boolean","enum":[false]},"DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesType"},"visibility":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesVisibility"},"sourceEntityType":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityType"},"sourceEntityId":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSourceEntityId"},"externalEmail":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesExternalEmail"},"externalName":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesExternalName"},"recipients":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesRecipients"},"subject":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSubject"},"body":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesBody"},"bodyFormat":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesBodyFormat"},"priority":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesPriority"},"objects":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesObjects"},"attachmentIds":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds"},"actionData":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesActionData"},"sendViaEmail":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesSendViaEmail"},"isDraft":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsDraft"}},"additionalProperties":false},"DocPathsMessagesIdPatchResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdPatchResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdPatchResponses200ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsMessagesIdPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses200ContentApplicationJsonSchemaPropertiesOk"},"id":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses200ContentApplicationJsonSchemaPropertiesId"},"message":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses200ContentApplicationJsonSchemaPropertiesMessage"}},"required":["ok"],"additionalProperties":false},"DocPathsMessagesIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdPatchResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdPatchResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdPatchResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdPatchResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdPatchResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdPatchResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses409ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdPatchResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdDeleteParameters0Schema":{"type":"string"},"DocPathsMessagesIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsMessagesIdDeleteResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesIdDeleteResponses200ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsMessagesIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"},"id":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses200ContentApplicationJsonSchemaPropertiesId"},"message":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses200ContentApplicationJsonSchemaPropertiesMessage"}},"required":["ok"],"additionalProperties":false},"DocPathsMessagesIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdDeleteResponses404ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses404ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesIdDeleteResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsMessagesIdDeleteResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMessagesIdDeleteResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses409ContentApplicationJsonSchemaPropertiesCode"},"error":{"$ref":"#/components/schemas/DocPathsMessagesIdDeleteResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMessagesTokenTokenGetParameters0Schema":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesType":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesSubject":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesBody":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesBodyFormat":{"type":"string","enum":["text","markdown"]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesPriority":{"type":"string","enum":["low","normal","high","urgent"]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesSenderUserId":{"type":"string","format":"uuid"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesSentAtAnyOf0":{"type":"null"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesSentAtAnyOf1":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesSentAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesSentAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesSentAtAnyOf1"}]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf0":{"type":"null"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesId":{"type":"string","minLength":1},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesLabel":{"type":"string","minLength":1},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesLabelKey":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesVariant":{"type":"string","enum":["default","secondary","destructive","outline","ghost"]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesIcon":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesCommandId":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesHref":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesIsTerminal":{"type":"boolean"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesConfirmRequired":{"type":"boolean"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesConfirmMessage":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesId"},"label":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesLabel"},"labelKey":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesLabelKey"},"variant":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesVariant"},"icon":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesIcon"},"commandId":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesCommandId"},"href":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesHref"},"isTerminal":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesIsTerminal"},"confirmRequired":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesConfirmRequired"},"confirmMessage":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItemsPropertiesConfirmMessage"}},"required":["id","label"],"additionalProperties":false},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActionsItems"}},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesPrimaryActionId":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesExpiresAt":{"type":"string","format":"datetime"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1":{"type":"object","properties":{"actions":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesActions"},"primaryActionId":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesPrimaryActionId"},"expiresAt":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1PropertiesExpiresAt"}},"required":["actions"],"additionalProperties":false},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionData":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionDataAnyOf1"}]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenAnyOf0":{"type":"null"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenAnyOf1":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTaken":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenAnyOf1"}]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenAtAnyOf0":{"type":"null"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenAtAnyOf1":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenAtAnyOf1"}]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenByUserIdAnyOf0":{"type":"null"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenByUserIdAnyOf1"}]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesEntityModule":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesEntityType":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesEntityId":{"type":"string","format":"uuid"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionRequired":{"type":"boolean"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionTypeAnyOf0":{"type":"null"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionTypeAnyOf1":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionTypeAnyOf1"}]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionLabelAnyOf0":{"type":"null"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionLabelAnyOf1":{"type":"string"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionLabelAnyOf1"}]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesSnapshotAnyOf0":{"type":"null"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesSnapshotAnyOf1":{"type":"object","additionalProperties":true},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesSnapshot":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesSnapshotAnyOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesSnapshotAnyOf1"}]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesId"},"entityModule":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesEntityModule"},"entityType":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesEntityType"},"entityId":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesEntityId"},"actionRequired":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionRequired"},"actionType":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionType"},"actionLabel":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesActionLabel"},"snapshot":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItemsPropertiesSnapshot"}},"required":["id","entityModule","entityType","entityId","actionRequired"],"additionalProperties":false},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjects":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjectsItems"}},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesRequiresAuth":{"type":"boolean"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesRecipientUserId":{"type":"string","format":"uuid"},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesId"},"type":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesType"},"subject":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesSubject"},"body":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesBody"},"bodyFormat":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesBodyFormat"},"priority":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesPriority"},"senderUserId":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesSenderUserId"},"sentAt":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesSentAt"},"actionData":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionData"},"actionTaken":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTaken"},"actionTakenAt":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenAt"},"actionTakenByUserId":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesActionTakenByUserId"},"objects":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesObjects"},"requiresAuth":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesRequiresAuth"},"recipientUserId":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0PropertiesRecipientUserId"}},"required":["id","type","subject","body","bodyFormat","priority","senderUserId","objects","requiresAuth","recipientUserId"],"additionalProperties":false},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesRequiresAuth":{"type":"boolean","enum":[true]},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf1":{"type":"object","properties":{"requiresAuth":{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf1PropertiesRequiresAuth"}},"required":["requiresAuth"],"additionalProperties":false},"DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchema":{"oneOf":[{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf0"},{"$ref":"#/components/schemas/DocPathsMessagesTokenTokenGetResponses200ContentApplicationJsonSchemaOneOf1"}]},"DocPathsMessagesTokenTokenGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsMessagesTokenTokenGetResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsMessagesTokenTokenGetResponses410ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsMeChannelsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsMeChannelsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsMeChannelsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMeChannelsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsMeChannelsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsMeChannelsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMeChannelsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsConnectCredentialsPostResponses422ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsSendAsUserPostResponses202ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsSendAsUserPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsSendAsUserPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsSendAsUserPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsSendAsUserPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsSendAsUserPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsSendAsUserPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsSendAsUserPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsSendAsUserPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsSendAsUserPostResponses422ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsTestSeedPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsTestSeedPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsTestSeedPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsTestSeedPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsTestSeedPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsTestSeedPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsTestSeedPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsTestSeedPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsTestSeedPostResponses422ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsTestSeedPostResponses500ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsWebhooksGmailPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsWebhooksGmailPostResponses401ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsWebhooksGmailPostResponses403ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsWebhooksGmailPostResponses503ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdDeleteParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdDeleteResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdGetParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteParameters1Schema":{"type":"string"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsReactionIdDeleteResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdHealthGetParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdHealthGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdHealthGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdHealthGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdHealthGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdHealthGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdHealthGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdHealthGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdHealthGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdHealthGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsOauthProviderCallbackGetParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsOauthProviderCallbackGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsOauthProviderCallbackGetResponses302ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsOauthProviderCallbackGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsOauthProviderCallbackGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderCallbackGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesSinceDaysAllOf0":{"type":"number"},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesSinceDays":{"allOf":[{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesSinceDaysAllOf0"}],"default":30},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmailsItems":{"type":"string","format":"email","maxLength":255},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmails":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmailsItems"},"maxItems":200},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesMaxMessagesAllOf0":{"type":"number"},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesMaxMessages":{"allOf":[{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesMaxMessagesAllOf0"}],"default":1000},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"sinceDays":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesSinceDays"},"contactEmails":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmails"},"maxMessages":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostRequestBodyContentApplicationJsonSchemaPropertiesMaxMessages"}},"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses202ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdImportHistoryPostResponses429ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdPollNowPostParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdPollNowPostResponses202ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdPollNowPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdPollNowPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdPollNowPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPollNowPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdPollNowPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdPollNowPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPollNowPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdPollNowPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdPollNowPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdPushRegisterPostParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses202ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses502ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdPushRegisterPostResponses503ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdSetPrimaryPostParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdSetPrimaryPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdTestSendPostParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdTestSendPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdTestSendPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdTestSendPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdTestSendPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdTestSendPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdTestSendPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsChannelsIdTestSendPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsChannelsIdTestSendPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsChannelsIdTestSendPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdTestSendPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdTestSendPostResponses422ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsChannelsIdTestSendPostResponses502ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsPostParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsMessagesMessageIdReactionsPostResponses422ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsOauthProviderInitiatePostParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsOauthProviderInitiatePostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsOauthProviderInitiatePostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsOauthProviderInitiatePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsOauthProviderInitiatePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderInitiatePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsOauthProviderInitiatePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsOauthProviderInitiatePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsOauthProviderInitiatePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsOauthProviderInitiatePostResponses422ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsOauthProviderInitiatePostResponses502ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsWebhookProviderPostParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsWebhookProviderPostResponses202ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsWebhookProviderPostResponses401ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsWebhookProviderPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsThreadsThreadIdAssignPutParameters0Schema":{"type":"string"},"DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsCommunicationChannelsThreadsThreadIdAssignPutResponses422ContentApplicationJsonSchema":{"type":"object"},"DocPathsAttachmentsLibraryGetParameters0Schema":{"type":"number"},"DocPathsAttachmentsLibraryGetParameters1Schema":{"type":"number"},"DocPathsAttachmentsLibraryGetParameters2Schema":{"type":"string"},"DocPathsAttachmentsLibraryGetParameters3Schema":{"type":"string"},"DocPathsAttachmentsLibraryGetParameters4Schema":{"type":"string"},"DocPathsAttachmentsLibraryGetParameters5Schema":{"type":"string","enum":["fileName","fileSize","createdAt"]},"DocPathsAttachmentsLibraryGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileName":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileSize":{"type":"number"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeType":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionCode":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitleAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitleAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitleAnyOf1"}]},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrlAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrlAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrlAnyOf1"}]},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems"}},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignments":{"type":"array","items":{}},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThumbnailUrl":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf0"},{}]},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"fileName":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileName"},"fileSize":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileSize"},"mimeType":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeType"},"partitionCode":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionCode"},"partitionTitle":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionTitle"},"url":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrl"},"createdAt":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"tags":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags"},"assignments":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignments"},"thumbnailUrl":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThumbnailUrl"},"content":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContent"}},"required":["id","fileName","fileSize","mimeType","partitionCode","partitionTitle","createdAt","tags","assignments"],"additionalProperties":false},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesAvailableTagsItems":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesAvailableTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesAvailableTagsItems"}},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesCode":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesTitle":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItems":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItemsPropertiesIsPublic"}},"required":["code","title","description","isPublic"],"additionalProperties":false},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitions":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitionsItems"}},"DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"},"availableTags":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesAvailableTags"},"partitions":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses200ContentApplicationJsonSchemaPropertiesPartitions"}},"required":["items","total","page","pageSize","totalPages","availableTags","partitions"],"additionalProperties":false},"DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsLibraryGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresOcr":{"type":"boolean"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModelAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModelAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModelAnyOf1"}]},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStorageDriver":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJsonAnyOf1"}]},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnvKey":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsPublic"},"requiresOcr":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequiresOcr"},"ocrModel":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOcrModel"},"storageDriver":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStorageDriver"},"configJson":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfigJson"},"createdAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"},"envKey":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEnvKey"}},"required":["id","code","title","description","isPublic","requiresOcr","ocrModel","createdAt","updatedAt","envKey"],"additionalProperties":false},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsAttachmentsPartitionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPartitionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":2,"maxLength":60,"pattern":"^[A-Za-z0-9_-]+$"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":120},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":500},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesRequiresOcr":{"type":"boolean"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf1":{"type":"string","maxLength":50},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf1"}]},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesStorageDriverAllOf0":{"type":"string","enum":["local","s3"]},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesStorageDriver":{"allOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesStorageDriverAllOf0"}],"default":"local"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf1"}]},"DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsPublic"},"requiresOcr":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesRequiresOcr"},"ocrModel":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesOcrModel"},"storageDriver":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesStorageDriver"},"configJson":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostRequestBodyContentApplicationJsonSchemaPropertiesConfigJson"}},"required":["code","title"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCode":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesTitle":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesRequiresOcr":{"type":"boolean"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf1"}]},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesStorageDriver":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf1"}]},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesEnvKey":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesIsPublic"},"requiresOcr":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesRequiresOcr"},"ocrModel":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModel"},"storageDriver":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesStorageDriver"},"configJson":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJson"},"createdAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt"},"envKey":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItemPropertiesEnvKey"}},"required":["id","code","title","description","isPublic","requiresOcr","ocrModel","createdAt","updatedAt","envKey"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses201ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPostResponses409ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":2,"maxLength":60,"pattern":"^[A-Za-z0-9_-]+$"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesTitle":{"type":"string","minLength":1,"maxLength":120},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":500},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesRequiresOcr":{"type":"boolean"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf1":{"type":"string","maxLength":50},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModelAnyOf1"}]},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesStorageDriverAllOf0":{"type":"string","enum":["local","s3"]},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesStorageDriver":{"allOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesStorageDriverAllOf0"}],"default":"local"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJsonAnyOf1"}]},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsPublic"},"requiresOcr":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesRequiresOcr"},"ocrModel":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesOcrModel"},"storageDriver":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesStorageDriver"},"configJson":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesConfigJson"},"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["code","title","id"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCode":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTitle":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescriptionAnyOf1"}]},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesIsPublic":{"type":"boolean"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRequiresOcr":{"type":"boolean"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModelAnyOf1"}]},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStorageDriver":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf1":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJsonAnyOf1"}]},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAtAnyOf1"}]},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEnvKey":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCode"},"title":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTitle"},"description":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesDescription"},"isPublic":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesIsPublic"},"requiresOcr":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesRequiresOcr"},"ocrModel":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesOcrModel"},"storageDriver":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesStorageDriver"},"configJson":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesConfigJson"},"createdAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUpdatedAt"},"envKey":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesEnvKey"}},"required":["id","code","title","description","isPublic","requiresOcr","ocrModel","createdAt","updatedAt","envKey"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsPutResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsPartitionsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPartitionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsPartitionsDeleteResponses409ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsGetParameters0Schema":{"type":"string","minLength":1},"DocPathsAttachmentsGetParameters1Schema":{"type":"string","minLength":1},"DocPathsAttachmentsGetParameters2Schema":{"type":"number"},"DocPathsAttachmentsGetParameters3Schema":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrl":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileName":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileSize":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf0":{"type":"null"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf1":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf1"}]},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThumbnailUrl":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionCode":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTagsItems"}},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf0":{"type":"null"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf1":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentAnyOf1"}]},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesType":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesId":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHrefAnyOf0":{"type":"null"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHrefAnyOf1":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHref":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHrefAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHrefAnyOf1"}]},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabelAnyOf1"}]},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesType"},"id":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesId"},"href":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesHref"},"label":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItemsPropertiesLabel"}},"required":["type","id"],"additionalProperties":false},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignmentsItems"}},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"url":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUrl"},"fileName":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileName"},"fileSize":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFileSize"},"createdAt":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"mimeType":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeType"},"thumbnailUrl":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThumbnailUrl"},"partitionCode":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartitionCode"},"tags":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTags"},"content":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContent"},"assignments":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAssignments"}},"required":["id","url","fileName","fileSize","createdAt"],"additionalProperties":false},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsAttachmentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items"],"additionalProperties":false},"DocPathsAttachmentsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesEntityId":{"type":"string","minLength":1},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesRecordId":{"type":"string","minLength":1},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesFieldKey":{"type":"string"},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesFile":{"type":"string","minLength":1},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesCustomFields":{"type":"string"},"DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesEntityId"},"recordId":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesRecordId"},"fieldKey":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesFieldKey"},"file":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesFile"},"customFields":{"$ref":"#/components/schemas/DocPathsAttachmentsPostRequestBodyContentMultipartFormDataSchemaPropertiesCustomFields"}},"required":["entityId","recordId","file"],"additionalProperties":false},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUrl":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileName":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileSize":{"type":"number"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesThumbnailUrl":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf0":{"type":"null"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf1":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf1"}]},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTagsItems":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTagsItems"}},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesType":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesId":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHrefAnyOf0":{"type":"null"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHrefAnyOf1":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHref":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHrefAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHrefAnyOf1"}]},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabelAnyOf1"}]},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesType"},"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesId"},"href":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesHref"},"label":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItemsPropertiesLabel"}},"required":["type","id"],"additionalProperties":false},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignmentsItems"}},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFields":{"type":"object","additionalProperties":true},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"url":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesUrl"},"fileName":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileName"},"fileSize":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileSize"},"thumbnailUrl":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesThumbnailUrl"},"content":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContent"},"tags":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTags"},"assignments":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignments"},"customFields":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFields"}},"required":["id","url","fileName","fileSize"],"additionalProperties":false},"DocPathsAttachmentsPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"item":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["ok","item"],"additionalProperties":false},"DocPathsAttachmentsPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsAttachmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAttachmentsDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId":{"type":"string","minLength":1},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems":{"type":"string","format":"uuid"},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems"},"minItems":1},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesFromRecordId":{"type":"string","minLength":1},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesToRecordId":{"type":"string","minLength":1},"DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesEntityId"},"attachmentIds":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds"},"fromRecordId":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesFromRecordId"},"toRecordId":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostRequestBodyContentApplicationJsonSchemaPropertiesToRecordId"}},"required":["entityId","attachmentIds","toRecordId"],"additionalProperties":false},"DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchemaPropertiesUpdated":{"type":"number"},"DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"updated":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses200ContentApplicationJsonSchemaPropertiesUpdated"}},"required":["ok","updated"],"additionalProperties":false},"DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsTransferPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsTransferPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsTransferPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsTransferPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsTransferPostResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsFileIdGetParameters0Schema":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsFileIdGetResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsImageIdSlugGetParameters0Schema":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetParameters1Schema":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses401ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses403ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsImageIdSlugGetResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdGetParameters0Schema":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId":{"type":"string","format":"uuid"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileName":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileSize":{"type":"number"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesMimeType":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionCode":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitleAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitleAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitle":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitleAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitleAnyOf1"}]},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTagsItems":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTagsItems"}},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignments":{"type":"array","items":{}},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContent":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContentAnyOf0"},{}]},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFieldsAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFields":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFieldsAnyOf0"},{}]},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItem":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesId"},"fileName":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileName"},"fileSize":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesFileSize"},"mimeType":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesMimeType"},"partitionCode":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionCode"},"partitionTitle":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesPartitionTitle"},"tags":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesTags"},"assignments":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesAssignments"},"content":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesContent"},"customFields":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItemPropertiesCustomFields"}},"required":["id","fileName","fileSize","mimeType","partitionCode","partitionTitle","tags","assignments"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"item":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["item"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdGetResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdPatchParameters0Schema":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesTagsItems":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesTags":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesTagsItems"}},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesType":{"type":"string","minLength":1},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesId":{"type":"string","minLength":1},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHrefAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHrefAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHref":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHrefAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHrefAnyOf1"}]},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabelAnyOf1"}]},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItems":{"type":"object","properties":{"type":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesType"},"id":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesId"},"href":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesHref"},"label":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItemsPropertiesLabel"}},"required":["type","id"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignments":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignmentsItems"}},"DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"tags":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesTags"},"assignments":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesAssignments"}},"additionalProperties":false},"DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchemaPropertiesItem":{},"DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOk"},"item":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses200ContentApplicationJsonSchemaPropertiesItem"}},"required":["ok","item"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdPatchResponses500ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdDeleteParameters0Schema":{"type":"string"},"DocPathsAttachmentsLibraryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsAttachmentsLibraryIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsAttachmentsLibraryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsAttachmentsLibraryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsInboxOpsEmailsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsEmailsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsEmailsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsEmailsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsEmailsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsExtractPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsExtractPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsExtractPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsExtractPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsExtractPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsExtractPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsExtractPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsExtractPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsCountsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsCountsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsCountsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsCountsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsCountsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsCountsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsCountsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsSettingsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsSettingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsSettingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsSettingsPatchResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsSettingsPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsSettingsPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsSettingsPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsSettingsPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsSettingsPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsSettingsPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsSettingsPatchResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsEmailsIdReprocessPostParameters0Schema":{"type":"string"},"DocPathsInboxOpsEmailsIdReprocessPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsEmailsIdReprocessPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsEmailsIdReprocessPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdReprocessPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsEmailsIdReprocessPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsEmailsIdReprocessPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdReprocessPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsEmailsIdReprocessPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsEmailsIdReprocessPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsEmailsIdGetParameters0Schema":{"type":"string"},"DocPathsInboxOpsEmailsIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsEmailsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsEmailsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsEmailsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsEmailsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsEmailsIdGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsEmailsIdDeleteParameters0Schema":{"type":"string"},"DocPathsInboxOpsEmailsIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsEmailsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsEmailsIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsEmailsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsEmailsIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsEmailsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsEmailsIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdAcceptAllPostParameters0Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdAcceptAllPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdAcceptAllPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdAcceptAllPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdAcceptAllPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdAcceptAllPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdAcceptAllPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdAcceptAllPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdAcceptAllPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostParameters0Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostParameters1Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdAcceptPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchParameters0Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchParameters1Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdCompletePatchResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdRejectPostParameters0Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdRejectPostParameters1Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdRejectPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdPatchParameters0Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdPatchParameters1Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdActionsActionIdPatchResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdCategorizePostParameters0Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdCategorizePostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdCategorizePostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdCategorizePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdCategorizePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdCategorizePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdCategorizePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdCategorizePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdCategorizePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdCategorizePostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdRejectPostParameters0Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdRejectPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdRejectPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdRejectPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRejectPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdRejectPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdRejectPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRejectPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdRejectPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostParameters0Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostParameters1Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses502ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdRepliesReplyIdSendPostResponses503ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdGetParameters0Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdTranslatePostParameters0Schema":{"type":"string"},"DocPathsInboxOpsProposalsIdTranslatePostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdTranslatePostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsProposalsIdTranslatePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdTranslatePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdTranslatePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdTranslatePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsInboxOpsProposalsIdTranslatePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsInboxOpsProposalsIdTranslatePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsInboxOpsProposalsIdTranslatePostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesFrom":{"type":"string"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesToOneOf0":{"type":"string"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesToOneOf1Items":{"type":"string"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesToOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesToOneOf1Items"}},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesTo":{"oneOf":[{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesToOneOf0"},{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesToOneOf1"}]},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesSubject":{"type":"string"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesText":{"type":"string"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesHtml":{"type":"string"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesMessageId":{"type":"string"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesReplyTo":{"type":"string"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesInReplyTo":{"type":"string"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesReferencesOneOf0":{"type":"string"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesReferencesOneOf1Items":{"type":"string"},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesReferencesOneOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesReferencesOneOf1Items"}},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesReferences":{"oneOf":[{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesReferencesOneOf0"},{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesReferencesOneOf1"}]},"DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"from":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesFrom"},"to":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesTo"},"subject":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesSubject"},"text":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesText"},"html":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesHtml"},"messageId":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesMessageId"},"replyTo":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesReplyTo"},"inReplyTo":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesInReplyTo"},"references":{"$ref":"#/components/schemas/DocPathsInboxOpsWebhookInboundPostRequestBodyContentApplicationJsonSchemaPropertiesReferences"}},"additionalProperties":false},"DocPathsInboxOpsWebhookInboundPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsWebhookInboundPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsWebhookInboundPostResponses413ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsWebhookInboundPostResponses429ContentApplicationJsonSchema":{"type":"object"},"DocPathsInboxOpsWebhookInboundPostResponses503ContentApplicationJsonSchema":{"type":"object"},"DocPathsChannelCloudflareEmailDeliveryEventsPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsChannelCloudflareEmailDeliveryEventsPostResponses202ContentApplicationJsonSchema":{"type":"object"},"DocPathsChannelCloudflareEmailDeliveryEventsPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsChannelCloudflareEmailDeliveryEventsPostResponses401ContentApplicationJsonSchema":{"type":"object"},"DocPathsChannelCloudflareEmailDeliveryEventsPostResponses413ContentApplicationJsonSchema":{"type":"object"},"DocPathsChannelCloudflareEmailDeliveryEventsPostResponses500ContentApplicationJsonSchema":{"type":"object"},"DocPathsSchedulerJobsGetParameters0Schema":{"type":"number"},"DocPathsSchedulerJobsGetParameters1Schema":{"type":"number"},"DocPathsSchedulerJobsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSchedulerJobsGetParameters3Schema":{"type":"string"},"DocPathsSchedulerJobsGetParameters4Schema":{"type":"string","enum":["system","organization","tenant"]},"DocPathsSchedulerJobsGetParameters6Schema":{"type":"string","enum":["user","module"]},"DocPathsSchedulerJobsGetParameters7Schema":{"type":"string"},"DocPathsSchedulerJobsGetParameters8Schema":{"type":"string"},"DocPathsSchedulerJobsGetParameters9Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSchedulerJobsGetParameters10Schema":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScopeType":{"type":"string","enum":["system","organization","tenant"]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantIdAnyOf1"}]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduleType":{"type":"string","enum":["cron","interval"]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduleValue":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezone":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetType":{"type":"string","enum":["queue","command"]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetQueueAnyOf0":{"type":"null"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetQueueAnyOf1":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetQueue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetQueueAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetQueueAnyOf1"}]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetCommandAnyOf0":{"type":"null"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetCommandAnyOf1":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetCommand":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetCommandAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetCommandAnyOf1"}]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetPayloadAnyOf0":{"type":"null"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetPayloadAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetPayload":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetPayloadAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetPayloadAnyOf1"}]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequireFeatureAnyOf0":{"type":"null"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequireFeatureAnyOf1":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequireFeature":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequireFeatureAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequireFeatureAnyOf1"}]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsEnabled":{"type":"boolean"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastRunAtAnyOf0":{"type":"null"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastRunAtAnyOf1":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastRunAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastRunAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastRunAtAnyOf1"}]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextRunAtAnyOf0":{"type":"null"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextRunAtAnyOf1":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextRunAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextRunAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextRunAtAnyOf1"}]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceType":{"type":"string","enum":["user","module"]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModuleAnyOf0":{"type":"null"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModuleAnyOf1":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModule":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModuleAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModuleAnyOf1"}]},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"scopeType":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScopeType"},"organizationId":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"scheduleType":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduleType"},"scheduleValue":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduleValue"},"timezone":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTimezone"},"targetType":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetType"},"targetQueue":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetQueue"},"targetCommand":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetCommand"},"targetPayload":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTargetPayload"},"requireFeature":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRequireFeature"},"isEnabled":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsEnabled"},"lastRunAt":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastRunAt"},"nextRunAt":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesNextRunAt"},"sourceType":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceType"},"sourceModule":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceModule"},"createdAt":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","description","scopeType","organizationId","tenantId","scheduleType","scheduleValue","timezone","targetType","targetQueue","targetCommand","targetPayload","requireFeature","isEnabled","lastRunAt","nextRunAt","sourceType","sourceModule","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsSchedulerJobsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerJobsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":500},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesScopeType":{"type":"string","enum":["system","organization","tenant"]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf1":{"type":"string"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf1"}]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesScheduleType":{"type":"string","enum":["cron","interval"]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesScheduleValue":{"type":"string","minLength":1},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTimezoneAllOf0":{"type":"string"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTimezone":{"allOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTimezoneAllOf0"}],"default":"UTC"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetType":{"type":"string","enum":["queue","command"]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetQueueAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetQueueAnyOf1":{"type":"string"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetQueue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetQueueAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetQueueAnyOf1"}]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetCommandAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetCommandAnyOf1":{"type":"string"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetCommand":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetCommandAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetCommandAnyOf1"}]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetPayloadAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetPayloadAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetPayload":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetPayloadAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetPayloadAnyOf1"}]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesRequireFeatureAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesRequireFeatureAnyOf1":{"type":"string"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesRequireFeature":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesRequireFeatureAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesRequireFeatureAnyOf1"}]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesIsEnabledAllOf0":{"type":"boolean"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesIsEnabled":{"allOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesIsEnabledAllOf0"}],"default":true},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceTypeAllOf0":{"type":"string","enum":["user","module"]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceType":{"allOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceTypeAllOf0"}],"default":"user"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceModuleAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceModuleAnyOf1":{"type":"string"},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceModule":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceModuleAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceModuleAnyOf1"}]},"DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"scopeType":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesScopeType"},"organizationId":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"tenantId":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"scheduleType":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesScheduleType"},"scheduleValue":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesScheduleValue"},"timezone":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTimezone"},"targetType":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetType"},"targetQueue":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetQueue"},"targetCommand":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetCommand"},"targetPayload":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTargetPayload"},"requireFeature":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesRequireFeature"},"isEnabled":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesIsEnabled"},"sourceType":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceType"},"sourceModule":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceModule"}},"required":["name","scopeType","scheduleType","scheduleValue","targetType"],"additionalProperties":false},"DocPathsSchedulerJobsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSchedulerJobsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSchedulerJobsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSchedulerJobsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerJobsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string"},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":500},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesScheduleType":{"type":"string","enum":["cron","interval"]},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesScheduleValue":{"type":"string","minLength":1},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTimezone":{"type":"string"},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetType":{"type":"string","enum":["queue","command"]},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetQueueAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetQueueAnyOf1":{"type":"string"},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetQueue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetQueueAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetQueueAnyOf1"}]},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetCommandAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetCommandAnyOf1":{"type":"string"},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetCommand":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetCommandAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetCommandAnyOf1"}]},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetPayloadAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetPayloadAnyOf1":{"type":"object","additionalProperties":true},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetPayload":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetPayloadAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetPayloadAnyOf1"}]},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesRequireFeatureAnyOf0":{"type":"null"},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesRequireFeatureAnyOf1":{"type":"string"},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesRequireFeature":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesRequireFeatureAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesRequireFeatureAnyOf1"}]},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesIsEnabled":{"type":"boolean"},"DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"scheduleType":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesScheduleType"},"scheduleValue":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesScheduleValue"},"timezone":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTimezone"},"targetType":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetType"},"targetQueue":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetQueue"},"targetCommand":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetCommand"},"targetPayload":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesTargetPayload"},"requireFeature":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesRequireFeature"},"isEnabled":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutRequestBodyContentApplicationJsonSchemaPropertiesIsEnabled"}},"required":["id"],"additionalProperties":false},"DocPathsSchedulerJobsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSchedulerJobsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSchedulerJobsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerJobsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerJobsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string"},"DocPathsSchedulerJobsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSchedulerJobsDeleteRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSchedulerJobsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSchedulerJobsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSchedulerJobsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSchedulerJobsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerJobsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchemaPropertiesQueuesItemsPropertiesValue":{"type":"string"},"DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchemaPropertiesQueuesItemsPropertiesLabel":{"type":"string"},"DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchemaPropertiesQueuesItems":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchemaPropertiesQueuesItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchemaPropertiesQueuesItemsPropertiesLabel"}},"required":["value","label"],"additionalProperties":false},"DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchemaPropertiesQueues":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchemaPropertiesQueuesItems"}},"DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchemaPropertiesCommands":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchemaPropertiesQueuesItems"}},"DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"queues":{"$ref":"#/components/schemas/DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchemaPropertiesQueues"},"commands":{"$ref":"#/components/schemas/DocPathsSchedulerTargetsGetResponses200ContentApplicationJsonSchemaPropertiesCommands"}},"required":["queues","commands"],"additionalProperties":false},"DocPathsSchedulerTargetsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerTargetsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerTargetsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerTriggerPostRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string"},"DocPathsSchedulerTriggerPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSchedulerTriggerPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean"},"DocPathsSchedulerTriggerPostResponses200ContentApplicationJsonSchemaPropertiesJobId":{"type":"string"},"DocPathsSchedulerTriggerPostResponses200ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsSchedulerTriggerPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"jobId":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses200ContentApplicationJsonSchemaPropertiesJobId"},"message":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses200ContentApplicationJsonSchemaPropertiesMessage"}},"required":["ok","jobId","message"],"additionalProperties":false},"DocPathsSchedulerTriggerPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerTriggerPostResponses400ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsSchedulerTriggerPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses400ContentApplicationJsonSchemaPropertiesError"},"message":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses400ContentApplicationJsonSchemaPropertiesMessage"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerTriggerPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerTriggerPostResponses401ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsSchedulerTriggerPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses401ContentApplicationJsonSchemaPropertiesError"},"message":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses401ContentApplicationJsonSchemaPropertiesMessage"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerTriggerPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerTriggerPostResponses403ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsSchedulerTriggerPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses403ContentApplicationJsonSchemaPropertiesError"},"message":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses403ContentApplicationJsonSchemaPropertiesMessage"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerTriggerPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerTriggerPostResponses404ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsSchedulerTriggerPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses404ContentApplicationJsonSchemaPropertiesError"},"message":{"$ref":"#/components/schemas/DocPathsSchedulerTriggerPostResponses404ContentApplicationJsonSchemaPropertiesMessage"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerJobsIdExecutionsGetParameters0Schema":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetParameters1Schema":{"type":"number"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduleId":{"type":"string","format":"uuid"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAt":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAtAnyOf0":{"type":"null"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAtAnyOf1":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAtAnyOf1"}]},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["running","completed","failed","waiting"]},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTriggerType":{"type":"string","enum":["scheduled","manual"]},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTriggeredByUserIdAnyOf0":{"type":"null"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTriggeredByUserIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTriggeredByUserId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTriggeredByUserIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTriggeredByUserIdAnyOf1"}]},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessageAnyOf0":{"type":"null"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessageAnyOf1":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessageAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessageAnyOf1"}]},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorStackAnyOf0":{"type":"null"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorStackAnyOf1":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorStack":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorStackAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorStackAnyOf1"}]},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMsAnyOf0":{"type":"null"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMsAnyOf1":{"type":"number"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMs":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMsAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMsAnyOf1"}]},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQueueJobId":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQueueName":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttemptsMade":{"type":"number"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResultAnyOf0":{"type":"null"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResult":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResultAnyOf0"},{}]},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"scheduleId":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScheduleId"},"startedAt":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAt"},"finishedAt":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAt"},"status":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"triggerType":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTriggerType"},"triggeredByUserId":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTriggeredByUserId"},"errorMessage":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessage"},"errorStack":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorStack"},"durationMs":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDurationMs"},"queueJobId":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQueueJobId"},"queueName":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesQueueName"},"attemptsMade":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAttemptsMade"},"result":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesResult"}},"required":["id","scheduleId","startedAt","finishedAt","status","triggerType","triggeredByUserId","errorMessage","errorStack","durationMs","queueJobId","queueName","attemptsMade","result"],"additionalProperties":false},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"}},"required":["items","total","page","pageSize"],"additionalProperties":false},"DocPathsSchedulerJobsIdExecutionsGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses400ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses400ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{}},"DocPathsSchedulerJobsIdExecutionsGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses400ContentApplicationJsonSchemaPropertiesError"},"message":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses400ContentApplicationJsonSchemaPropertiesMessage"},"items":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses400ContentApplicationJsonSchemaPropertiesItems"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerJobsIdExecutionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses401ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses401ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{}},"DocPathsSchedulerJobsIdExecutionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses401ContentApplicationJsonSchemaPropertiesError"},"message":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses401ContentApplicationJsonSchemaPropertiesMessage"},"items":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses401ContentApplicationJsonSchemaPropertiesItems"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerJobsIdExecutionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses403ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses403ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{}},"DocPathsSchedulerJobsIdExecutionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses403ContentApplicationJsonSchemaPropertiesError"},"message":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses403ContentApplicationJsonSchemaPropertiesMessage"},"items":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses403ContentApplicationJsonSchemaPropertiesItems"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerJobsIdExecutionsGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses404ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsSchedulerJobsIdExecutionsGetResponses404ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{}},"DocPathsSchedulerJobsIdExecutionsGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses404ContentApplicationJsonSchemaPropertiesError"},"message":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses404ContentApplicationJsonSchemaPropertiesMessage"},"items":{"$ref":"#/components/schemas/DocPathsSchedulerJobsIdExecutionsGetResponses404ContentApplicationJsonSchemaPropertiesItems"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerQueueJobsJobIdGetParameters0Schema":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetParameters1Schema":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesData":{},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesState":{"type":"string","enum":["waiting","active","completed","failed","delayed","waiting-children"]},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProgressAnyOf0":{"type":"null"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProgressAnyOf1":{"type":"number"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProgress":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProgressAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProgressAnyOf1"}]},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnvalueAnyOf0":{"type":"null"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnvalue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnvalueAnyOf0"},{}]},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFailedReasonAnyOf0":{"type":"null"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFailedReasonAnyOf1":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFailedReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFailedReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFailedReasonAnyOf1"}]},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesStacktraceAnyOf0":{"type":"null"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesStacktraceAnyOf1Items":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesStacktraceAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesStacktraceAnyOf1Items"}},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesStacktrace":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesStacktraceAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesStacktraceAnyOf1"}]},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesAttemptsMade":{"type":"number"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProcessedOnAnyOf0":{"type":"null"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProcessedOnAnyOf1":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProcessedOn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProcessedOnAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProcessedOnAnyOf1"}]},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFinishedOnAnyOf0":{"type":"null"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFinishedOnAnyOf1":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFinishedOn":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFinishedOnAnyOf0"},{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFinishedOnAnyOf1"}]},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesLogsItems":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesLogs":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesLogsItems"}},"DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesName"},"data":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesData"},"state":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesState"},"progress":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProgress"},"returnvalue":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesReturnvalue"},"failedReason":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFailedReason"},"stacktrace":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesStacktrace"},"attemptsMade":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesAttemptsMade"},"processedOn":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesProcessedOn"},"finishedOn":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesFinishedOn"},"logs":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses200ContentApplicationJsonSchemaPropertiesLogs"}},"required":["id","name","data","state","progress","returnvalue","failedReason","stacktrace","attemptsMade","processedOn","finishedOn","logs"],"additionalProperties":false},"DocPathsSchedulerQueueJobsJobIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses400ContentApplicationJsonSchemaPropertiesAvailable":{"type":"boolean"},"DocPathsSchedulerQueueJobsJobIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses400ContentApplicationJsonSchemaPropertiesError"},"available":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses400ContentApplicationJsonSchemaPropertiesAvailable"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerQueueJobsJobIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses401ContentApplicationJsonSchemaPropertiesAvailable":{"type":"boolean"},"DocPathsSchedulerQueueJobsJobIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses401ContentApplicationJsonSchemaPropertiesError"},"available":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses401ContentApplicationJsonSchemaPropertiesAvailable"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerQueueJobsJobIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses403ContentApplicationJsonSchemaPropertiesAvailable":{"type":"boolean"},"DocPathsSchedulerQueueJobsJobIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses403ContentApplicationJsonSchemaPropertiesError"},"available":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses403ContentApplicationJsonSchemaPropertiesAvailable"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerQueueJobsJobIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses404ContentApplicationJsonSchemaPropertiesAvailable":{"type":"boolean"},"DocPathsSchedulerQueueJobsJobIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses404ContentApplicationJsonSchemaPropertiesError"},"available":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses404ContentApplicationJsonSchemaPropertiesAvailable"}},"required":["error"],"additionalProperties":false},"DocPathsSchedulerQueueJobsJobIdGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSchedulerQueueJobsJobIdGetResponses500ContentApplicationJsonSchemaPropertiesAvailable":{"type":"boolean"},"DocPathsSchedulerQueueJobsJobIdGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses500ContentApplicationJsonSchemaPropertiesError"},"available":{"$ref":"#/components/schemas/DocPathsSchedulerQueueJobsJobIdGetResponses500ContentApplicationJsonSchemaPropertiesAvailable"}},"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"},"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"},"envVars":{"$ref":"#/components/schemas/DocPathsSearchSettingsVectorStoreGetResponses200ContentApplicationJsonSchemaPropertiesDriversItemsPropertiesEnvVars"}},"required":["id","name","configured","implemented","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},"DocPathsDataSyncMappingsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncMappingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncMappingsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncSchedulesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncSchedulesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdGetParameters0Schema":{"type":"string"},"DocPathsDataSyncMappingsIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncMappingsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdPutParameters0Schema":{"type":"string"},"DocPathsDataSyncMappingsIdPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncMappingsIdPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdDeleteParameters0Schema":{"type":"string"},"DocPathsDataSyncMappingsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncMappingsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncMappingsIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncMappingsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdGetParameters0Schema":{"type":"string"},"DocPathsDataSyncRunsIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncRunsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdGetParameters0Schema":{"type":"string"},"DocPathsDataSyncSchedulesIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncSchedulesIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdPutParameters0Schema":{"type":"string"},"DocPathsDataSyncSchedulesIdPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncSchedulesIdPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdDeleteParameters0Schema":{"type":"string"},"DocPathsDataSyncSchedulesIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncSchedulesIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncSchedulesIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncSchedulesIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncOptionsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncOptionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncOptionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncOptionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncOptionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncOptionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncRunPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdCancelPostParameters0Schema":{"type":"string"},"DocPathsDataSyncRunsIdCancelPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncRunsIdCancelPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdCancelPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdCancelPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdCancelPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdCancelPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdRetryPostParameters0Schema":{"type":"string"},"DocPathsDataSyncRunsIdRetryPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncRunsIdRetryPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdRetryPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsIdRetryPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsIdRetryPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsIdRetryPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncRunsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncRunsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncRunsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncRunsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncValidatePostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsDataSyncValidatePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncValidatePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncValidatePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDataSyncValidatePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDataSyncValidatePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDataSyncValidatePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsApiKeysKeysGetParameters0Schema":{"type":"string"},"DocPathsApiKeysKeysGetParameters1Schema":{"type":"string"},"DocPathsApiKeysKeysGetParameters2Schema":{"type":"string"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKeyPrefix":{"type":"string"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf0":{"type":"null"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf1":{"type":"string"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationNameAnyOf1"}]},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAtAnyOf0":{"type":"null"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAtAnyOf1":{"type":"string"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAtAnyOf1"}]},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf0":{"type":"null"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf1":{"type":"string"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAtAnyOf1"}]},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesId":{"type":"string"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesNameAnyOf1"}]},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItemsPropertiesName"}},"required":["id","name"],"additionalProperties":false},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRolesItems"}},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"keyPrefix":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKeyPrefix"},"organizationId":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"organizationName":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationName"},"createdAt":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"lastUsedAt":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLastUsedAt"},"expiresAt":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExpiresAt"},"roles":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRoles"}},"required":["id","name","description","keyPrefix","organizationId","organizationName","createdAt","lastUsedAt","expiresAt","roles"],"additionalProperties":false},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","page","pageSize","totalPages"],"additionalProperties":false},"DocPathsApiKeysKeysGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsApiKeysKeysGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsApiKeysKeysGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsApiKeysKeysGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsApiKeysKeysGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsApiKeysKeysGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsApiKeysKeysGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":120},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":1000},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf1"}]},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesTenantIdAnyOf1"}]},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesRolesAllOf0Items":{"type":"string","minLength":1},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesRolesAllOf0":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesRolesAllOf0Items"}},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesRoles":{"allOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesRolesAllOf0"}],"default":[]},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAtAnyOf0":{"type":"null"},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAtAnyOf1":{"type":"string","format":"date-time"},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAtAnyOf1"}]},"DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"tenantId":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesOrganizationId"},"roles":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesRoles"},"expiresAt":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostRequestBodyContentApplicationJsonSchemaPropertiesExpiresAt"}},"required":["name"],"additionalProperties":false},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string"},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesKeyPrefix":{"type":"string"},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesSecret":{"type":"string"},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesTenantIdAnyOf1"}]},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesId":{"type":"string"},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesNameAnyOf0":{"type":"null"},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesNameAnyOf1":{"type":"string"},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesNameAnyOf1"}]},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRolesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesName"}},"required":["id","name"],"additionalProperties":false},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRolesItems"}},"DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesName"},"keyPrefix":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesKeyPrefix"},"secret":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesSecret"},"tenantId":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationId"},"roles":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses201ContentApplicationJsonSchemaPropertiesRoles"}},"required":["id","name","keyPrefix","tenantId","organizationId","roles"],"additionalProperties":false},"DocPathsApiKeysKeysPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsApiKeysKeysPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsApiKeysKeysPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsApiKeysKeysPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsApiKeysKeysPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsApiKeysKeysPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsApiKeysKeysPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsApiKeysKeysDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsApiKeysKeysDeleteResponses200ContentApplicationJsonSchemaPropertiesSuccess":{"type":"boolean","enum":[true]},"DocPathsApiKeysKeysDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"success":{"$ref":"#/components/schemas/DocPathsApiKeysKeysDeleteResponses200ContentApplicationJsonSchemaPropertiesSuccess"}},"required":["success"],"additionalProperties":false},"DocPathsApiKeysKeysDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsApiKeysKeysDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsApiKeysKeysDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsApiKeysKeysDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsApiKeysKeysDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsApiKeysKeysDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsApiKeysKeysDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsApiKeysKeysDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsApiKeysKeysDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsApiKeysKeysDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsApiKeysKeysDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsApiKeysKeysDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsGetResponses500ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiChatPostParameters0Schema":{"type":"string","pattern":"^[a-z0-9_]+\\.[a-z0-9_]+$"},"DocPathsAiAssistantAiChatPostParameters1Schema":{"type":"string"},"DocPathsAiAssistantAiChatPostParameters2Schema":{"type":"string"},"DocPathsAiAssistantAiChatPostParameters3Schema":{"type":"string"},"DocPathsAiAssistantAiChatPostParameters4Schema":{"type":"string","enum":["tight","default","loose"]},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesId":{"type":"string","minLength":1,"maxLength":128},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesRole":{"type":"string","enum":["user","assistant","system"]},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesContent":{"type":"string"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesUiParts":{"type":"array","items":{}},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItemsPropertiesId":{"type":"string"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItemsPropertiesName":{"type":"string"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItemsPropertiesType":{"type":"string"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItemsPropertiesMimeType":{"type":"string"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItemsPropertiesSize":{"type":"number"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItemsPropertiesName"},"type":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItemsPropertiesType"},"mimeType":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItemsPropertiesMimeType"},"size":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItemsPropertiesSize"}},"additionalProperties":true},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFiles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFilesItems"}},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesId"},"role":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesRole"},"content":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesContent"},"uiParts":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesUiParts"},"files":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesFiles"}},"required":["role","content"],"additionalProperties":false},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessages":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItems"},"minItems":1,"maxItems":100},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems":{"type":"string"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems"}},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesDebug":{"type":"boolean"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesPageIdAnyOf0":{"type":"null"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesPageIdAnyOf1":{"type":"string"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesPageId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesPageIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesPageIdAnyOf1"}]},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesEntityTypeAnyOf0":{"type":"null"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesEntityTypeAnyOf1":{"type":"string"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesEntityType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesEntityTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesEntityTypeAnyOf1"}]},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesRecordIdAnyOf0":{"type":"null"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesRecordIdAnyOf1":{"type":"string"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesRecordId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesRecordIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesRecordIdAnyOf1"}]},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContext":{"type":"object","properties":{"pageId":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesPageId"},"entityType":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesEntityType"},"recordId":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesRecordId"}},"additionalProperties":true},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesSessionId":{"type":"string","format":"uuid"},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesConversationId":{"type":"string","minLength":1,"maxLength":128},"DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"messages":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesMessages"},"attachmentIds":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds"},"debug":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesDebug"},"pageContext":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesPageContext"},"sessionId":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesSessionId"},"conversationId":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostRequestBodyContentApplicationJsonSchemaPropertiesConversationId"}},"required":["messages"],"additionalProperties":false},"DocPathsAiAssistantAiChatPostResponses200ContentTextEventStreamSchema":{"type":"object"},"DocPathsAiAssistantAiChatPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiChatPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiChatPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiChatPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiChatPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiChatPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiChatPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiChatPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiChatPostResponses500ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsImportPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsImportPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsImportPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsImportPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsImportPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsImportPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsImportPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsImportPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesAgent":{"type":"string","pattern":"^[a-z0-9_]+\\.[a-z0-9_]+$"},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesRole":{"type":"string","enum":["user","assistant","system"]},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesContent":{"type":"string"},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItems":{"type":"object","properties":{"role":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesRole"},"content":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItemsPropertiesContent"}},"required":["role","content"],"additionalProperties":false},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesMessages":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesMessagesItems"},"minItems":1,"maxItems":100},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems":{"type":"string"},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIdsItems"}},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesPageId":{"type":"string"},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesEntityType":{"type":"string"},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesRecordId":{"type":"string"},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesPageContext":{"type":"object","properties":{"pageId":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesPageId"},"entityType":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesEntityType"},"recordId":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesPageContextPropertiesRecordId"}},"additionalProperties":true},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesModelOverride":{"type":"string"},"DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"agent":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesAgent"},"messages":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesMessages"},"attachmentIds":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesAttachmentIds"},"pageContext":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesPageContext"},"modelOverride":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostRequestBodyContentApplicationJsonSchemaPropertiesModelOverride"}},"required":["agent","messages"],"additionalProperties":false},"DocPathsAiAssistantAiRunObjectPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiRunObjectPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiRunObjectPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiRunObjectPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiRunObjectPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiRunObjectPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiRunObjectPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiRunObjectPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiRunObjectPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiRunObjectPostResponses422ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiRunObjectPostResponses500ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantChatPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantChatPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantChatPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantChatPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantChatPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantChatPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantChatPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantHealthGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantHealthGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantHealthGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantHealthGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantHealthGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantHealthGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantHealthGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string"},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesKeyPrefix":{"type":"string"},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesSecret":{"type":"string"},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesTenantIdAnyOf1"}]},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesRolesItems":{"type":"string"},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesRolesItems"}},"DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesName"},"keyPrefix":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesKeyPrefix"},"secret":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesSecret"},"tenantId":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesOrganizationId"},"roles":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses200ContentApplicationJsonSchemaPropertiesRoles"}},"required":["id","name","keyPrefix","secret","tenantId","organizationId","roles"],"additionalProperties":false},"DocPathsAiAssistantMcpKeyPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantMcpKeyPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantMcpKeyPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantMcpKeyPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantMcpKeyPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantMcpKeyPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantMcpKeyPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantRoutePostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantRoutePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantRoutePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantRoutePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantRoutePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantRoutePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantRoutePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSessionKeyPostResponses200ContentApplicationJsonSchemaPropertiesSessionToken":{"type":"string"},"DocPathsAiAssistantSessionKeyPostResponses200ContentApplicationJsonSchemaPropertiesExpiresAt":{"type":"string"},"DocPathsAiAssistantSessionKeyPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"sessionToken":{"$ref":"#/components/schemas/DocPathsAiAssistantSessionKeyPostResponses200ContentApplicationJsonSchemaPropertiesSessionToken"},"expiresAt":{"$ref":"#/components/schemas/DocPathsAiAssistantSessionKeyPostResponses200ContentApplicationJsonSchemaPropertiesExpiresAt"}},"required":["sessionToken","expiresAt"],"additionalProperties":false},"DocPathsAiAssistantSessionKeyPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSessionKeyPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSessionKeyPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSessionKeyPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSessionKeyPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSessionKeyPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSessionKeyPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSessionKeyPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSessionKeyPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedProvidersAnyOf0":{"type":"null"},"DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedProvidersAnyOf1Items":{"type":"string","minLength":1,"maxLength":64},"DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedProvidersAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedProvidersAnyOf1Items"}},"DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedProviders":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedProvidersAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedProvidersAnyOf1"}]},"DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedModelsByProviderAdditionalPropertiesItems":{"type":"string","minLength":1,"maxLength":256},"DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedModelsByProviderAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedModelsByProviderAdditionalPropertiesItems"}},"DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedModelsByProvider":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedModelsByProviderAdditionalProperties"}},"DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"allowedProviders":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedProviders"},"allowedModelsByProvider":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedModelsByProvider"}},"additionalProperties":false},"DocPathsAiAssistantSettingsAllowlistPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantSettingsAllowlistPutResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantSettingsAllowlistPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSettingsAllowlistPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSettingsAllowlistPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSettingsAllowlistPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSettingsAllowlistDeleteResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantSettingsAllowlistDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSettingsAllowlistDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSettingsAllowlistDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSettingsAllowlistDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsAllowlistDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSettingsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSettingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSettingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderIdAnyOf0":{"type":"null"},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderIdAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderIdAnyOf1"}]},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesModelIdAnyOf0":{"type":"null"},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesModelIdAnyOf1":{"type":"string","minLength":1,"maxLength":256},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesModelId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesModelIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesModelIdAnyOf1"}]},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseURLAnyOf0":{"type":"null"},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseURLAnyOf1":{"type":"string","format":"uri","maxLength":2048},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseURL":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseURLAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseURLAnyOf1"}]},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAgentIdAnyOf0":{"type":"null"},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAgentIdAnyOf1":{"type":"string","minLength":1,"maxLength":128},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAgentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAgentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAgentIdAnyOf1"}]},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideProvidersAnyOf0":{"type":"null"},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideProvidersAnyOf1Items":{"type":"string","minLength":1,"maxLength":64},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideProvidersAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideProvidersAnyOf1Items"}},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideProviders":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideProvidersAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideProvidersAnyOf1"}]},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideModelsByProviderAdditionalPropertiesItems":{"type":"string","minLength":1,"maxLength":256},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideModelsByProviderAdditionalProperties":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideModelsByProviderAdditionalPropertiesItems"}},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideModelsByProvider":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideModelsByProviderAdditionalProperties"}},"DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"providerId":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesProviderId"},"modelId":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesModelId"},"baseURL":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseURL"},"agentId":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAgentId"},"allowedOverrideProviders":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideProviders"},"allowedOverrideModelsByProvider":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutRequestBodyContentApplicationJsonSchemaPropertiesAllowedOverrideModelsByProvider"}},"additionalProperties":false},"DocPathsAiAssistantSettingsPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantSettingsPutResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantSettingsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSettingsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSettingsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSettingsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSettingsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAgentIdAnyOf0":{"type":"null"},"DocPathsAiAssistantSettingsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAgentIdAnyOf1":{"type":"string","minLength":1,"maxLength":128},"DocPathsAiAssistantSettingsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAgentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAgentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAgentIdAnyOf1"}]},"DocPathsAiAssistantSettingsDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"agentId":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsDeleteRequestBodyContentApplicationJsonSchemaPropertiesAgentId"}},"additionalProperties":false},"DocPathsAiAssistantSettingsDeleteResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantSettingsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSettingsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantSettingsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantSettingsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantSettingsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantToolsExecutePostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantToolsExecutePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantToolsExecutePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantToolsExecutePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantToolsExecutePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantToolsExecutePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantToolsExecutePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantToolsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantToolsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantToolsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantToolsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantToolsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantToolsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantToolsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantUsageDailyGetParameters0Schema":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},"DocPathsAiAssistantUsageDailyGetParameters1Schema":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},"DocPathsAiAssistantUsageDailyGetParameters2Schema":{"type":"string","minLength":1,"maxLength":256},"DocPathsAiAssistantUsageDailyGetParameters3Schema":{"type":"string","minLength":1,"maxLength":256},"DocPathsAiAssistantUsageDailyGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantUsageDailyGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantUsageDailyGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantUsageDailyGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageDailyGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantUsageDailyGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantUsageDailyGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageDailyGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantUsageDailyGetResponses500ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantUsageSessionsGetParameters0Schema":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},"DocPathsAiAssistantUsageSessionsGetParameters1Schema":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},"DocPathsAiAssistantUsageSessionsGetParameters2Schema":{"type":"string","minLength":1,"maxLength":256},"DocPathsAiAssistantUsageSessionsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantUsageSessionsGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantUsageSessionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantUsageSessionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantUsageSessionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantUsageSessionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantUsageSessionsGetResponses500ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdCancelPostParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiActionsIdCancelPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdCancelPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdCancelPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiActionsIdCancelPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdCancelPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiActionsIdCancelPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiActionsIdCancelPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdCancelPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiActionsIdCancelPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdCancelPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdCancelPostResponses500ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdConfirmPostParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiActionsIdConfirmPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdConfirmPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiActionsIdConfirmPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdConfirmPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiActionsIdConfirmPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiActionsIdConfirmPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdConfirmPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiActionsIdConfirmPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdConfirmPostResponses409ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdConfirmPostResponses412ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdConfirmPostResponses500ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdGetParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiActionsIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiActionsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiActionsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiActionsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiActionsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiActionsIdGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiActionsIdGetResponses500ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopDisabledAnyOf0":{"type":"null"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopDisabledAnyOf1":{"type":"boolean"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopDisabled":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopDisabledAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopDisabledAnyOf1"}]},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxStepsAnyOf0":{"type":"null"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxStepsAnyOf1":{"type":"number"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxSteps":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxStepsAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxStepsAnyOf1"}]},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxToolCallsAnyOf0":{"type":"null"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxToolCallsAnyOf1":{"type":"number"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxToolCalls":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxToolCallsAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxToolCallsAnyOf1"}]},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxWallClockMsAnyOf0":{"type":"null"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxWallClockMsAnyOf1":{"type":"number"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxWallClockMs":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxWallClockMsAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxWallClockMsAnyOf1"}]},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxTokensAnyOf0":{"type":"null"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxTokensAnyOf1":{"type":"number"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxTokens":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxTokensAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxTokensAnyOf1"}]},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf0":{"type":"null"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf0PropertiesKind":{"type":"string","enum":["stepCount"]},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf0PropertiesCount":{"type":"number"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf0":{"type":"object","properties":{"kind":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf0PropertiesKind"},"count":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf0PropertiesCount"}},"required":["kind","count"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf1PropertiesKind":{"type":"string","enum":["hasToolCall"]},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf1PropertiesToolName":{"type":"string","minLength":1},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf1":{"type":"object","properties":{"kind":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf1PropertiesKind"},"toolName":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf1PropertiesToolName"}},"required":["kind","toolName"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1Items":{"oneOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1ItemsOneOf1"}]},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1Items"}},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJsonAnyOf1"}]},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopActiveToolsJsonAnyOf0":{"type":"null"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopActiveToolsJsonAnyOf1Items":{"type":"string","minLength":1},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopActiveToolsJsonAnyOf1":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopActiveToolsJsonAnyOf1Items"}},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopActiveToolsJson":{"anyOf":[{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopActiveToolsJsonAnyOf0"},{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopActiveToolsJsonAnyOf1"}]},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"loopDisabled":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopDisabled"},"loopMaxSteps":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxSteps"},"loopMaxToolCalls":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxToolCalls"},"loopMaxWallClockMs":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxWallClockMs"},"loopMaxTokens":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopMaxTokens"},"loopStopWhenJson":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopStopWhenJson"},"loopActiveToolsJson":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutRequestBodyContentApplicationJsonSchemaPropertiesLoopActiveToolsJson"}},"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdLoopOverridePutResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdLoopOverrideDeleteResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdModelsGetParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdModelsGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostRequestBodyContentApplicationJsonSchemaPropertiesMutationPolicy":{"type":"string","enum":["read-only","confirm-required","destructive-confirm-required"]},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"type":"string","maxLength":2000},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"mutationPolicy":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostRequestBodyContentApplicationJsonSchemaPropertiesMutationPolicy"},"notes":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"}},"required":["mutationPolicy"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdMutationPolicyDeleteResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetResponses401ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetResponses403ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverrideGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostRequestBodyContentApplicationJsonSchemaPropertiesSectionsAdditionalProperties":{"type":"string"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostRequestBodyContentApplicationJsonSchemaPropertiesSections":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostRequestBodyContentApplicationJsonSchemaPropertiesSectionsAdditionalProperties"}},"DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"type":"string","maxLength":2000},"DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"sections":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostRequestBodyContentApplicationJsonSchemaPropertiesSections"},"overrides":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostRequestBodyContentApplicationJsonSchemaPropertiesSections"},"notes":{"$ref":"#/components/schemas/DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostRequestBodyContentApplicationJsonSchemaPropertiesNotes"}},"additionalProperties":false},"DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostResponses401ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostResponses403ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiAgentsAgentIdPromptOverridePostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteParameters1Schema":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdParticipantsUserIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsGetParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdParticipantsGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsPostParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdParticipantsPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdGetParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdPatchParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdPatchResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdPatchResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdPatchResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdDeleteParameters0Schema":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantAiConversationsConversationIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantAiConversationsConversationIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantAiConversationsConversationIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantAiConversationsConversationIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantUsageSessionsSessionIdGetParameters0Schema":{"type":"string"},"DocPathsAiAssistantUsageSessionsSessionIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantUsageSessionsSessionIdGetResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantUsageSessionsSessionIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantUsageSessionsSessionIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsSessionIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantUsageSessionsSessionIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsAiAssistantUsageSessionsSessionIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsAiAssistantUsageSessionsSessionIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsAiAssistantUsageSessionsSessionIdGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsAiAssistantUsageSessionsSessionIdGetResponses500ContentApplicationJsonSchema":{"type":"object"},"DocPathsPerspectivesTableIdPerspectiveIdDeleteParameters0Schema":{"type":"string","minLength":1},"DocPathsPerspectivesTableIdPerspectiveIdDeleteParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses200ContentApplicationJsonSchemaPropertiesSuccess":{"type":"boolean","enum":[true]},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"success":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses200ContentApplicationJsonSchemaPropertiesSuccess"}},"required":["success"],"additionalProperties":false},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPerspectiveIdDeleteResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPerspectivesTableIdRolesRoleIdDeleteParameters0Schema":{"type":"string","minLength":1},"DocPathsPerspectivesTableIdRolesRoleIdDeleteParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdRolesRoleIdDeleteRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByRoleIdAdditionalProperties":{"type":"string","minLength":1,"nullable":true},"DocPathsPerspectivesTableIdRolesRoleIdDeleteRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByRoleId":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByRoleIdAdditionalProperties"}},"DocPathsPerspectivesTableIdRolesRoleIdDeleteRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByPerspectiveIdAdditionalProperties":{"type":"string","minLength":1,"nullable":true},"DocPathsPerspectivesTableIdRolesRoleIdDeleteRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByPerspectiveId":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByPerspectiveIdAdditionalProperties"}},"DocPathsPerspectivesTableIdRolesRoleIdDeleteRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"roleExpectedUpdatedAtByRoleId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByRoleId"},"roleExpectedUpdatedAtByPerspectiveId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByPerspectiveId"}},"additionalProperties":false},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses200ContentApplicationJsonSchemaPropertiesSuccess":{"type":"boolean","enum":[true]},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"success":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses200ContentApplicationJsonSchemaPropertiesSuccess"}},"required":["success"],"additionalProperties":false},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdRolesRoleIdDeleteResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPerspectivesTableIdGetParameters0Schema":{"type":"string","minLength":1},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesTableId":{"type":"string"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesName":{"type":"string"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesTableId":{"type":"string"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesColumnOrderItems":{"type":"string","minLength":1},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesColumnOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesColumnOrderItems"},"maxItems":120},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesColumnVisibilityAdditionalProperties":{"type":"boolean"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesColumnVisibility":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesColumnVisibilityAdditionalProperties"}},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesFilters":{"type":"object","additionalProperties":true},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesSortingItemsPropertiesId":{"type":"string","minLength":1},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesSortingItemsPropertiesDesc":{"type":"boolean"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesSortingItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesSortingItemsPropertiesId"},"desc":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesSortingItemsPropertiesDesc"}},"required":["id"],"additionalProperties":false},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesSorting":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesSortingItems"},"maxItems":20},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesPageSize":{"type":"number"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesSearchValue":{"type":"string","maxLength":200},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettings":{"type":"object","properties":{"columnOrder":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesColumnOrder"},"columnVisibility":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesColumnVisibility"},"filters":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesFilters"},"sorting":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesSorting"},"pageSize":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesPageSize"},"searchValue":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettingsPropertiesSearchValue"}},"additionalProperties":false},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesIsDefault":{"type":"boolean"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesCreatedAt":{"type":"string"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesName"},"tableId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesTableId"},"settings":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettings"},"isDefault":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesIsDefault"},"createdAt":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesUpdatedAt"}},"required":["id","name","tableId","settings","isDefault","createdAt","updatedAt"],"additionalProperties":false},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectives":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItems"}},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesDefaultPerspectiveIdAnyOf0":{"type":"null"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesDefaultPerspectiveIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesDefaultPerspectiveId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesDefaultPerspectiveIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesDefaultPerspectiveIdAnyOf1"}]},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleId":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantIdAnyOf1"}]},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleNameAnyOf0":{"type":"null"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleNameAnyOf1":{"type":"string"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleNameAnyOf1"}]},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesName"},"tableId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesTableId"},"settings":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesSettings"},"isDefault":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesIsDefault"},"createdAt":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectivesItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesUpdatedAt"},"roleId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleId"},"tenantId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationId"},"roleName":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleName"}},"required":["id","name","tableId","settings","isDefault","createdAt","updatedAt","roleId","tenantId","organizationId","roleName"],"additionalProperties":false},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectives":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItems"}},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesManageableRolePerspectives":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItems"}},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesName":{"type":"string"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesHasPerspective":{"type":"boolean"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesHasDefault":{"type":"boolean"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesName"},"hasPerspective":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesHasPerspective"},"hasDefault":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolesItemsPropertiesHasDefault"}},"required":["id","name","hasPerspective","hasDefault"],"additionalProperties":false},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolesItems"}},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesCanApplyToRoles":{"type":"boolean"},"DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"tableId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesTableId"},"perspectives":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesPerspectives"},"defaultPerspectiveId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesDefaultPerspectiveId"},"rolePerspectives":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRolePerspectives"},"manageableRolePerspectives":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesManageableRolePerspectives"},"roles":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesRoles"},"canApplyToRoles":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses200ContentApplicationJsonSchemaPropertiesCanApplyToRoles"}},"required":["tableId","perspectives","defaultPerspectiveId","rolePerspectives","manageableRolePerspectives","roles","canApplyToRoles"],"additionalProperties":false},"DocPathsPerspectivesTableIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPerspectivesTableIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPerspectivesTableIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPerspectivesTableIdPostParameters0Schema":{"type":"string","minLength":1},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesPerspectiveId":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":120},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesColumnOrderItems":{"type":"string","minLength":1},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesColumnOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesColumnOrderItems"},"maxItems":120},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesColumnVisibilityAdditionalProperties":{"type":"boolean"},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesColumnVisibility":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesColumnVisibilityAdditionalProperties"}},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesFilters":{"type":"object","additionalProperties":true},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesSortingItemsPropertiesId":{"type":"string","minLength":1},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesSortingItemsPropertiesDesc":{"type":"boolean"},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesSortingItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesSortingItemsPropertiesId"},"desc":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesSortingItemsPropertiesDesc"}},"required":["id"],"additionalProperties":false},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesSorting":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesSortingItems"},"maxItems":20},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesPageSize":{"type":"number"},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesSearchValue":{"type":"string","maxLength":200},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettings":{"type":"object","properties":{"columnOrder":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesColumnOrder"},"columnVisibility":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesColumnVisibility"},"filters":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesFilters"},"sorting":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesSorting"},"pageSize":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesPageSize"},"searchValue":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettingsPropertiesSearchValue"}},"additionalProperties":false},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesApplyToRolesItems":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesApplyToRoles":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesApplyToRolesItems"}},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesClearRoleIdsItems":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesClearRoleIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesClearRoleIdsItems"}},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByRoleIdAdditionalProperties":{"type":"string","minLength":1,"nullable":true},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByRoleId":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByRoleIdAdditionalProperties"}},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByPerspectiveIdAdditionalProperties":{"type":"string","minLength":1,"nullable":true},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByPerspectiveId":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByPerspectiveIdAdditionalProperties"}},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSetRoleDefault":{"type":"boolean"},"DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"perspectiveId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesPerspectiveId"},"name":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"settings":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSettings"},"isDefault":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesIsDefault"},"applyToRoles":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesApplyToRoles"},"clearRoleIds":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesClearRoleIds"},"roleExpectedUpdatedAtByRoleId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByRoleId"},"roleExpectedUpdatedAtByPerspectiveId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesRoleExpectedUpdatedAtByPerspectiveId"},"setRoleDefault":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostRequestBodyContentApplicationJsonSchemaPropertiesSetRoleDefault"}},"required":["name","settings"],"additionalProperties":false},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesId":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesName":{"type":"string"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesTableId":{"type":"string"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesColumnOrderItems":{"type":"string","minLength":1},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesColumnOrder":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesColumnOrderItems"},"maxItems":120},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesColumnVisibilityAdditionalProperties":{"type":"boolean"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesColumnVisibility":{"type":"object","additionalProperties":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesColumnVisibilityAdditionalProperties"}},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesFilters":{"type":"object","additionalProperties":true},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesSortingItemsPropertiesId":{"type":"string","minLength":1},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesSortingItemsPropertiesDesc":{"type":"boolean"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesSortingItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesSortingItemsPropertiesId"},"desc":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesSortingItemsPropertiesDesc"}},"required":["id"],"additionalProperties":false},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesSorting":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesSortingItems"},"maxItems":20},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesPageSize":{"type":"number"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesSearchValue":{"type":"string","maxLength":200},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettings":{"type":"object","properties":{"columnOrder":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesColumnOrder"},"columnVisibility":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesColumnVisibility"},"filters":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesFilters"},"sorting":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesSorting"},"pageSize":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesPageSize"},"searchValue":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettingsPropertiesSearchValue"}},"additionalProperties":false},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesIsDefault":{"type":"boolean"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesCreatedAt":{"type":"string"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesUpdatedAtAnyOf1"}]},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspective":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesName"},"tableId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesTableId"},"settings":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettings"},"isDefault":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesIsDefault"},"createdAt":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesUpdatedAt"}},"required":["id","name","tableId","settings","isDefault","createdAt","updatedAt"],"additionalProperties":false},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesUpdatedAtAnyOf1"}]},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleId":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantIdAnyOf0":{"type":"null"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantIdAnyOf1"}]},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleNameAnyOf0":{"type":"null"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleNameAnyOf1":{"type":"string"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleNameAnyOf1"}]},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesName"},"tableId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesTableId"},"settings":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesSettings"},"isDefault":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesIsDefault"},"createdAt":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspectivePropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesUpdatedAt"},"roleId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleId"},"tenantId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesOrganizationId"},"roleName":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItemsPropertiesRoleName"}},"required":["id","name","tableId","settings","isDefault","createdAt","updatedAt","roleId","tenantId","organizationId","roleName"],"additionalProperties":false},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectives":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectivesItems"}},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesClearedRoleIdsItems":{"type":"string","format":"uuid"},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesClearedRoleIds":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesClearedRoleIdsItems"}},"DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"perspective":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesPerspective"},"rolePerspectives":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesRolePerspectives"},"clearedRoleIds":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses200ContentApplicationJsonSchemaPropertiesClearedRoleIds"}},"required":["perspective","rolePerspectives","clearedRoleIds"],"additionalProperties":false},"DocPathsPerspectivesTableIdPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsPerspectivesTableIdPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPerspectivesTableIdPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPerspectivesTableIdPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPerspectivesTableIdPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPerspectivesTableIdPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesGetParameters0Schema":{"type":"string","enum":["true","false"]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKey":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibilityAnyOf0":{"type":"null"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibilityAnyOf1":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibilityAnyOf1"}]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsInherited":{"type":"boolean"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"key":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"managerVisibility":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesManagerVisibility"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntrySortMode"},"organizationId":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsInherited"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","key","name","description","isSystem","isActive","organizationId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDictionariesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsDictionariesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesKey":{"type":"string","minLength":1,"maxLength":100,"pattern":"^[a-z0-9][a-z0-9_-]*$"},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"key":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesPostRequestBodyContentApplicationJsonSchemaPropertiesEntrySortMode"}},"required":["key","name"],"additionalProperties":false},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesKey":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0":{"type":"null"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1"}]},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsInherited":{"type":"boolean"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"key":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsActive"},"managerVisibility":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesManagerVisibility"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesEntrySortMode"},"organizationId":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesIsInherited"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","key","name","description","isSystem","isActive","organizationId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchParameters1Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIcon"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesPosition"},"isDefault":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsDefault"}},"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesValue":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesLabel":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIcon"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesPosition"},"isDefault":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsDefault"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","value","label","color","icon","position","isDefault","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteParameters1Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesEntryIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesReorderPostParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesId"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItemsPropertiesPosition"}},"required":["id","position"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntries":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntriesItems"},"minItems":1},"DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entries":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostRequestBodyContentApplicationJsonSchemaPropertiesEntries"}},"required":["entries"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesReorderPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesReorderPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColorAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIconAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefault":{"type":"boolean"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIcon"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPosition"},"isDefault":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsDefault"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","value","label","color","icon","position","isDefault","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses200ContentApplicationJsonSchemaPropertiesItems"}},"required":["items"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesPostParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"string","minLength":1,"maxLength":150},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":150},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string","pattern":"^#([0-9a-fA-F]{6})$"},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string","minLength":1,"maxLength":64},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesIcon"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostRequestBodyContentApplicationJsonSchemaPropertiesPosition"}},"required":["value"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesValue":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesLabel":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColor":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColorAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIcon":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIconAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesPosition":{"type":"number"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIsDefault":{"type":"boolean"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesId"},"value":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesValue"},"label":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesLabel"},"color":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesColor"},"icon":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIcon"},"position":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesPosition"},"isDefault":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesIsDefault"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses201ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","value","label","color","icon","position","isDefault","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostRequestBodyContentApplicationJsonSchemaPropertiesEntryId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"entryId":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostRequestBodyContentApplicationJsonSchemaPropertiesEntryId"}},"required":["entryId"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdEntriesSetDefaultPostResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesKey":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1"}]},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsInherited":{"type":"boolean"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesId"},"key":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsActive"},"managerVisibility":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesManagerVisibility"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesEntrySortMode"},"organizationId":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesIsInherited"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","key","name","description","isSystem","isActive","organizationId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdGetResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdGetResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdGetResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdGetResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdPatchParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesKey":{"type":"string","minLength":1,"maxLength":100,"pattern":"^[a-z0-9][a-z0-9_-]*$"},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":200},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":2000},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"key":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchRequestBodyContentApplicationJsonSchemaPropertiesEntrySortMode"}},"additionalProperties":false},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesKey":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsSystem":{"type":"boolean"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibility":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibilityAnyOf1"}]},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesEntrySortMode":{"type":"string","enum":["label_asc","label_desc","value_asc","value_desc","created_at_asc","created_at_desc"]},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationIdAnyOf1"}]},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsInherited":{"type":"boolean"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0":{"type":"null"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAtAnyOf1"}]},"DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesId"},"key":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesKey"},"name":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesDescription"},"isSystem":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsSystem"},"isActive":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsActive"},"managerVisibility":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesManagerVisibility"},"entrySortMode":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesEntrySortMode"},"organizationId":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesOrganizationId"},"isInherited":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesIsInherited"},"createdAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","key","name","description","isSystem","isActive","organizationId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdPatchResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses409ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdPatchResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdPatchResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdDeleteParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDictionariesDictionaryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDictionariesDictionaryIdDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdDeleteResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses400ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDictionariesDictionaryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdDeleteResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsDictionariesDictionaryIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDictionariesDictionaryIdDeleteResponses500ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDictionariesDictionaryIdDeleteResponses500ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckBooleanGetParameters0Schema":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesEnabled":{"type":"boolean"},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesSource":{"type":"string","enum":["override","default","fallback","missing"]},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesToggleId":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesTenantId":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"enabled":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesEnabled"},"source":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesSource"},"toggleId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesToggleId"},"identifier":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesIdentifier"},"tenantId":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses200ContentApplicationJsonSchemaPropertiesTenantId"}},"required":["enabled","source","toggleId","identifier","tenantId"],"additionalProperties":true},"DocPathsFeatureTogglesCheckBooleanGetResponses400ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses400ContentApplicationJsonSchemaPropertiesDetails":{},"DocPathsFeatureTogglesCheckBooleanGetResponses400ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses400ContentApplicationJsonSchemaPropertiesError"},"details":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses400ContentApplicationJsonSchemaPropertiesDetails"}},"required":["error"],"additionalProperties":true},"DocPathsFeatureTogglesCheckBooleanGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesCheckBooleanGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckBooleanGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsFeatureTogglesCheckJsonGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckJsonGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsFeatureTogglesCheckNumberGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckNumberGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsFeatureTogglesCheckStringGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesCheckStringGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsFeatureTogglesGlobalGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsFeatureTogglesGlobalPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsFeatureTogglesGlobalPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsFeatureTogglesGlobalDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsFeatureTogglesGlobalDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsFeatureTogglesGlobalDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsFeatureTogglesOverridesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsFeatureTogglesOverridesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesOverridesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsFeatureTogglesGlobalIdOverrideGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdOverrideGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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"},"DocPathsFeatureTogglesGlobalIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsFeatureTogglesGlobalIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"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},"DocPathsProgressActiveGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsProgressActiveGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressActiveGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressActiveGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProgressActiveGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressActiveGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressActiveGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProgressJobsGetParameters0Schema":{"type":"string"},"DocPathsProgressJobsGetParameters1Schema":{"type":"string"},"DocPathsProgressJobsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsProgressJobsGetParameters3Schema":{"type":"string","enum":["true","false"]},"DocPathsProgressJobsGetParameters4Schema":{"type":"string"},"DocPathsProgressJobsGetParameters5Schema":{"type":"number"},"DocPathsProgressJobsGetParameters6Schema":{"type":"number"},"DocPathsProgressJobsGetParameters7Schema":{"type":"string"},"DocPathsProgressJobsGetParameters8Schema":{"type":"string","enum":["createdAt","startedAt","finishedAt"]},"DocPathsProgressJobsGetParameters9Schema":{"type":"string","enum":["asc","desc"]},"DocPathsProgressJobsGetParameters10Schema":{"type":"string"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobType":{"type":"string"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProgressPercent":{"type":"number"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProcessedCount":{"type":"number"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalCountAnyOf0":{"type":"null"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalCountAnyOf1":{"type":"number"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalCountAnyOf1"}]},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaSecondsAnyOf0":{"type":"null"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaSecondsAnyOf1":{"type":"number"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaSeconds":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaSecondsAnyOf0"},{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaSecondsAnyOf1"}]},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCancellable":{"type":"boolean"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAtAnyOf0":{"type":"null"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAtAnyOf1":{"type":"string"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAtAnyOf1"}]},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAtAnyOf0":{"type":"null"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAtAnyOf1":{"type":"string"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAtAnyOf1"}]},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessageAnyOf0":{"type":"null"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessageAnyOf1":{"type":"string"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessage":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessageAnyOf0"},{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessageAnyOf1"}]},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0":{"type":"null"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1":{"type":"string"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAtAnyOf1"}]},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId":{"type":"string","format":"uuid"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0":{"type":"null"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationIdAnyOf1"}]},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"jobType":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesJobType"},"name":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"status":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"progressPercent":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProgressPercent"},"processedCount":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProcessedCount"},"totalCount":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalCount"},"etaSeconds":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEtaSeconds"},"cancellable":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCancellable"},"startedAt":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStartedAt"},"finishedAt":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFinishedAt"},"errorMessage":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorMessage"},"createdAt":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"tenantId":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTenantId"},"organizationId":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOrganizationId"}},"required":["id","jobType","name","description","status","progressPercent","processedCount","totalCount","etaSeconds","cancellable","startedAt","finishedAt","errorMessage","createdAt","tenantId","organizationId"],"additionalProperties":false},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsProgressJobsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsProgressJobsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressJobsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProgressJobsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressJobsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressJobsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesJobType":{"type":"string","minLength":1,"maxLength":100},"DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string","maxLength":1000},"DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTotalCount":{"type":"number"},"DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesCancellableAllOf0":{"type":"boolean"},"DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesCancellable":{"allOf":[{"$ref":"#/components/schemas/DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesCancellableAllOf0"}],"default":false},"DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesMeta":{"type":"object","additionalProperties":true},"DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesParentJobId":{"type":"string","format":"uuid"},"DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesPartitionIndex":{"type":"number"},"DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesPartitionCount":{"type":"number"},"DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"jobType":{"$ref":"#/components/schemas/DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesJobType"},"name":{"$ref":"#/components/schemas/DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"totalCount":{"$ref":"#/components/schemas/DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesTotalCount"},"cancellable":{"$ref":"#/components/schemas/DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesCancellable"},"meta":{"$ref":"#/components/schemas/DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesMeta"},"parentJobId":{"$ref":"#/components/schemas/DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesParentJobId"},"partitionIndex":{"$ref":"#/components/schemas/DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesPartitionIndex"},"partitionCount":{"$ref":"#/components/schemas/DocPathsProgressJobsPostRequestBodyContentApplicationJsonSchemaPropertiesPartitionCount"}},"required":["jobType","name"],"additionalProperties":false},"DocPathsProgressJobsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsProgressJobsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsProgressJobsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsProgressJobsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsProgressJobsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsProgressJobsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsProgressJobsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsProgressJobsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressJobsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressJobsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProgressJobsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressJobsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressJobsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProgressJobsIdGetParameters0Schema":{"type":"string"},"DocPathsProgressJobsIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsProgressJobsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressJobsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressJobsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProgressJobsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressJobsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressJobsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProgressJobsIdPutParameters0Schema":{"type":"string"},"DocPathsProgressJobsIdPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsProgressJobsIdPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressJobsIdPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressJobsIdPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProgressJobsIdPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressJobsIdPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressJobsIdPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProgressJobsIdDeleteParameters0Schema":{"type":"string"},"DocPathsProgressJobsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressJobsIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressJobsIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsProgressJobsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsProgressJobsIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsProgressJobsIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTranslationsEntityTypeEntityIdGetParameters0Schema":{"type":"string","minLength":1,"pattern":"^[a-z_]+:[a-z_]+$"},"DocPathsTranslationsEntityTypeEntityIdGetParameters1Schema":{"type":"string","minLength":1},"DocPathsTranslationsEntityTypeEntityIdGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsTranslationsEntityTypeEntityIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTranslationsEntityTypeEntityIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTranslationsEntityTypeEntityIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTranslationsEntityTypeEntityIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTranslationsEntityTypeEntityIdGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsTranslationsEntityTypeEntityIdPutParameters0Schema":{"type":"string","minLength":1,"pattern":"^[a-z_]+:[a-z_]+$"},"DocPathsTranslationsEntityTypeEntityIdPutParameters1Schema":{"type":"string","minLength":1},"DocPathsTranslationsEntityTypeEntityIdPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsTranslationsEntityTypeEntityIdPutResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsTranslationsEntityTypeEntityIdPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTranslationsEntityTypeEntityIdPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTranslationsEntityTypeEntityIdPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTranslationsEntityTypeEntityIdPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTranslationsEntityTypeEntityIdDeleteParameters0Schema":{"type":"string","minLength":1,"pattern":"^[a-z_]+:[a-z_]+$"},"DocPathsTranslationsEntityTypeEntityIdDeleteParameters1Schema":{"type":"string","minLength":1},"DocPathsTranslationsEntityTypeEntityIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTranslationsEntityTypeEntityIdDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTranslationsEntityTypeEntityIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsTranslationsEntityTypeEntityIdDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsTranslationsEntityTypeEntityIdDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsTranslationsLocalesGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsTranslationsLocalesPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsStorageProvidersS3DownloadGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsStorageProvidersS3ListGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsStorageProvidersS3SignedUrlPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsStorageProvidersS3UploadPostResponses201ContentApplicationJsonSchema":{"type":"object"}}},"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":"Integrations","description":"Core integration framework — external ID mapping, status badges, and integration registry."},{"name":"Messages","description":"Internal messaging system with attachments, actions, and email forwarding."},{"name":"Communication Channels","description":"Unified hub bridging external chat/email channels (Slack, WhatsApp, Email) to the Messages module. Adapter contract, channel-native payload storage, reactions, and per-channel threading."},{"name":"Attachments","description":"File attachments and media management."},{"name":"InboxOps — Email-to-ERP Agent","description":"Receives forwarded emails via webhook, extracts structured action proposals using LLM, and presents them for human-in-the-loop approval."},{"name":"Cloudflare Email Channel","description":"Inbound email via Cloudflare Email Routing and a thin Email Worker; outbound via the Email Sending REST API, with real delivery status from Queues event subscriptions."},{"name":"LTS Procurement Ingest","description":"Bridges inbound Cloudflare Email messages into inbox_ops for PDF extraction, under an explicit shadow-mode gate."},{"name":"Scheduler","description":"Database-managed scheduled jobs with admin UI"},{"name":"Search","description":"Unified search module with pluggable strategies (Meilisearch, Vector, Tokens)."},{"name":"Data Sync","description":"Streaming data sync hub for import/export integrations."},{"name":"API Keys","description":"Manage access tokens for external API access."},{"name":"AI Assistant","description":"MCP server for AI assistant integration with multi-tenant support."},{"name":"Table perspectives","description":"Shared persistence for DataTable perspectives (columns, filters, saved views)."},{"name":"Shared Dictionaries","description":"Organization-scoped dictionaries for reusable enumerations and appearance presets."},{"name":"Feature Toggles","description":"Global feature flags with tenant-level overrides."},{"name":"Progress","description":"Generic server-side progress tracking for long-running operations"},{"name":"Entity Translations","description":"System-wide entity translation storage and locale overlay for CRUD responses."},{"name":"S3-Compatible Storage","description":"Store attachments and files in AWS S3, DigitalOcean Spaces, MinIO, or any S3-compatible object storage."}]}