{"openapi":"3.1.0","info":{"title":"Una API","version":"0.6.5","description":"Auto-generated OpenAPI definition for all enabled modules."},"servers":[{"url":"https://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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 for the current tenant or globally when `tenantId` is omitted.\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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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}}}},"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://151.115.63.33.sslip.io/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}}}},"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},"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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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}}}},"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://151.115.63.33.sslip.io/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"]}}}},"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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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}}}},"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://151.115.63.33.sslip.io/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}]}}}},"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://151.115.63.33.sslip.io/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.\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}}}},"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}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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":"withDeleted","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters5Schema"},"example":true},{"name":"format","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters6Schema"},"example":"csv"},{"name":"exportScope","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters7Schema"},"example":"full"},{"name":"export_scope","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters8Schema"},"example":"full"},{"name":"all","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters9Schema"},"example":true},{"name":"full","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEntitiesRecordsGetParameters10Schema"},"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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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}},"/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/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://151.115.63.33.sslip.io/api/attachments/library/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["attachments.manage"],"x-require-auth":true}},"/events":{"get":{"operationId":"events_get_events","summary":"List declared events","description":"Returns every declared event. Filters: category, module, excludeTriggerExcluded (default true).","tags":["Events"],"parameters":[],"responses":{"200":{"description":"Declared events","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEventsGetResponses200ContentApplicationJsonSchema"},"example":{"data":[{"id":"string","label":"string"}],"total":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEventsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/events\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/events/stream":{"get":{"operationId":"events_get_events_stream","summary":"GET /events/stream","tags":["Events"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEventsStreamGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEventsStreamGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/events/stream\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-auth":true}},"/customers/customers":{"get":{"operationId":"customers_get_customers_customers","summary":"Customer (Klient) CRUD","description":"Requires features: customers.customer.view","tags":["Klienci"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCustomersGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCustomersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCustomersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/customers/customers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["customers.customer.view"],"x-require-auth":true},"post":{"operationId":"customers_post_customers_customers","summary":"Customer (Klient) CRUD","description":"Requires features: customers.customer.manage","tags":["Klienci"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCustomersPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCustomersPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCustomersPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/customers/customers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["customers.customer.manage"],"x-require-auth":true},"put":{"operationId":"customers_put_customers_customers","summary":"Customer (Klient) CRUD","description":"Requires features: customers.customer.manage","tags":["Klienci"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCustomersPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCustomersPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCustomersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/customers/customers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["customers.customer.manage"],"x-require-auth":true},"delete":{"operationId":"customers_delete_customers_customers","summary":"Customer (Klient) CRUD","description":"Requires features: customers.customer.manage","tags":["Klienci"],"parameters":[],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCustomersDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsCustomersCustomersDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/customers/customers\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["customers.customer.manage"],"x-require-auth":true}},"/energy_master_data/hubs":{"get":{"operationId":"energy_master_data_get_energy_master_data_hubs","summary":"List hubs","description":"Returns a paginated collection of hubs scoped to the authenticated organization.\n\nRequires features: energy_master_data.hub.view","tags":["Energy Master Data"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetParameters5Schema"},"example":"DRAFT"},{"name":"terytCode","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetParameters6Schema"},"example":"string"},{"name":"asOf","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetParameters7Schema"},"example":"2025-01-01T00:00:00.000Z"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated hubs","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","customerId":"00000000-0000-4000-8000-000000000000","name":"string","addressLine1":null,"addressLine2":null,"city":null,"postalCode":null,"country":null,"terytCode":null,"status":"string","createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/energy_master_data/hubs?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["energy_master_data.hub.view"],"x-require-auth":true},"post":{"operationId":"energy_master_data_post_energy_master_data_hubs","summary":"Create hub","description":"Create a hub\n\nRequires features: energy_master_data.hub.manage","tags":["Energy Master Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchema"},"example":{"customerId":"00000000-0000-4000-8000-000000000000","name":"string"}}},"description":"Create a hub"},"responses":{"201":{"description":"Hub created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/energy_master_data/hubs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"customerId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"name\\\": \\\"string\\\"\n}\""}],"x-require-features":["energy_master_data.hub.manage"],"x-require-auth":true},"put":{"operationId":"energy_master_data_put_energy_master_data_hubs","summary":"Update hub","description":"Updates an existing hub by id.\n\nRequires features: energy_master_data.hub.manage","tags":["Energy Master Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the hub."},"responses":{"200":{"description":"Hub updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/energy_master_data/hubs\" \\\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":["energy_master_data.hub.manage"],"x-require-auth":true},"delete":{"operationId":"energy_master_data_delete_energy_master_data_hubs","summary":"Delete hub","description":"Deletes a hub identified by id.\n\nRequires features: energy_master_data.hub.manage","tags":["Energy Master Data"],"parameters":[],"responses":{"200":{"description":"Hub deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/energy_master_data/hubs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["energy_master_data.hub.manage"],"x-require-auth":true}},"/energy_master_data/meters":{"get":{"operationId":"energy_master_data_get_energy_master_data_meters","summary":"List meters","description":"Returns a paginated collection of meters scoped to the authenticated organization.\n\nRequires features: energy_master_data.meter.view","tags":["Energy Master Data"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"serialNumber","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetParameters4Schema"},"example":"string"},{"name":"deviceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetParameters5Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetParameters6Schema"},"example":"IN_STOCK"},{"name":"podId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetParameters7Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"asOf","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetParameters8Schema"},"example":"2025-01-01T00:00:00.000Z"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetParameters9Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated meters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","serialNumber":"string","deviceId":null,"remoteRead":true,"legalizationDate":null,"status":"IN_STOCK","createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/energy_master_data/meters?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["energy_master_data.meter.view"],"x-require-auth":true},"post":{"operationId":"energy_master_data_post_energy_master_data_meters","summary":"Create meter","description":"Create a meter in the tenant pool\n\nRequires features: energy_master_data.meter.manage","tags":["Energy Master Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchema"},"example":{"serialNumber":"string"}}},"description":"Create a meter in the tenant pool"},"responses":{"201":{"description":"Meter created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/energy_master_data/meters\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"serialNumber\\\": \\\"string\\\"\n}\""}],"x-require-features":["energy_master_data.meter.manage"],"x-require-auth":true},"put":{"operationId":"energy_master_data_put_energy_master_data_meters","summary":"Update meter","description":"Updates an existing meter by id.\n\nRequires features: energy_master_data.meter.manage","tags":["Energy Master Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the meter."},"responses":{"200":{"description":"Meter updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/energy_master_data/meters\" \\\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":["energy_master_data.meter.manage"],"x-require-auth":true},"delete":{"operationId":"energy_master_data_delete_energy_master_data_meters","summary":"Delete meter","description":"Deletes a meter identified by id.\n\nRequires features: energy_master_data.meter.manage","tags":["Energy Master Data"],"parameters":[],"responses":{"200":{"description":"Meter deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/energy_master_data/meters\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["energy_master_data.meter.manage"],"x-require-auth":true}},"/energy_master_data/osds":{"get":{"operationId":"energy_master_data_get_energy_master_data_osds","summary":"List osds","description":"Returns a paginated collection of osds scoped to the authenticated organization.\n\nRequires features: energy_master_data.osd.view","tags":["Energy Master Data"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"code","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetParameters4Schema"},"example":"string"},{"name":"commodity","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetParameters5Schema"},"example":"GAS"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetParameters6Schema"},"example":"ACTIVE"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated osds","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","taxId":null,"commodity":"GAS","status":"ACTIVE","createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/energy_master_data/osds?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["energy_master_data.osd.view"],"x-require-auth":true},"post":{"operationId":"energy_master_data_post_energy_master_data_osds","summary":"Create osd","description":"Create an OSD (platform admin only)\n\nRequires features: energy_master_data.osd.manage","tags":["Energy Master Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","name":"string"}}},"description":"Create an OSD (platform admin only)"},"responses":{"201":{"description":"OSD created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/energy_master_data/osds\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\"\n}\""}],"x-require-features":["energy_master_data.osd.manage"],"x-require-auth":true},"put":{"operationId":"energy_master_data_put_energy_master_data_osds","summary":"Update osd","description":"Updates an existing osd by id.\n\nRequires features: energy_master_data.osd.manage","tags":["Energy Master Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the osd."},"responses":{"200":{"description":"OSD updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/energy_master_data/osds\" \\\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":["energy_master_data.osd.manage"],"x-require-auth":true},"delete":{"operationId":"energy_master_data_delete_energy_master_data_osds","summary":"Delete osd","description":"Deletes a osd identified by id.\n\nRequires features: energy_master_data.osd.manage","tags":["Energy Master Data"],"parameters":[],"responses":{"200":{"description":"OSD deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/energy_master_data/osds\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["energy_master_data.osd.manage"],"x-require-auth":true}},"/energy_master_data/pods":{"get":{"operationId":"energy_master_data_get_energy_master_data_pods","summary":"List points of delivery (ppgs)","description":"Returns a paginated collection of points of delivery (ppgs) scoped to the authenticated organization.\n\nRequires features: energy_master_data.pod.view","tags":["Energy Master Data"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"hubId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"gsrn","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters7Schema"},"example":"string"},{"name":"osdId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters8Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"osdArea","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters9Schema"},"example":"string"},{"name":"commodity","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters10Schema"},"example":"GAS"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters11Schema"},"example":"DRAFT"},{"name":"asOf","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetParameters12Schema"},"example":"2025-01-01T00:00:00.000Z"}],"responses":{"200":{"description":"Paginated points of delivery (ppgs)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","hubId":"00000000-0000-4000-8000-000000000000","code":"string","gsrn":"string","commodity":"GAS","osdArea":"string","osdId":null,"status":"DRAFT","createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/energy_master_data/pods?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["energy_master_data.pod.view"],"x-require-auth":true},"post":{"operationId":"energy_master_data_post_energy_master_data_pods","summary":"Create point of delivery (ppg)","description":"Create a PPG (validates GSRN checksum)\n\nRequires features: energy_master_data.pod.manage","tags":["Energy Master Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchema"},"example":{"hubId":"00000000-0000-4000-8000-000000000000","code":"string","osdArea":"string"}}},"description":"Create a PPG (validates GSRN checksum)"},"responses":{"201":{"description":"Point of Delivery (PPG) created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/energy_master_data/pods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"hubId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"code\\\": \\\"string\\\",\n  \\\"osdArea\\\": \\\"string\\\"\n}\""}],"x-require-features":["energy_master_data.pod.manage"],"x-require-auth":true},"put":{"operationId":"energy_master_data_put_energy_master_data_pods","summary":"Update point of delivery (ppg)","description":"Updates an existing point of delivery (ppg) by id.\n\nRequires features: energy_master_data.pod.manage","tags":["Energy Master Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the point of delivery (ppg)."},"responses":{"200":{"description":"Point of Delivery (PPG) updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/energy_master_data/pods\" \\\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":["energy_master_data.pod.manage"],"x-require-auth":true},"delete":{"operationId":"energy_master_data_delete_energy_master_data_pods","summary":"Delete point of delivery (ppg)","description":"Deletes a point of delivery (ppg) identified by id.\n\nRequires features: energy_master_data.pod.manage","tags":["Energy Master Data"],"parameters":[],"responses":{"200":{"description":"Point of Delivery (PPG) deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/energy_master_data/pods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["energy_master_data.pod.manage"],"x-require-auth":true}},"/energy_master_data/ppg-assignments":{"get":{"operationId":"energy_master_data_get_energy_master_data_ppg_assignments","summary":"List ppg customer assignments","description":"Returns a paginated collection of ppg customer assignments scoped to the authenticated organization.\n\nRequires features: energy_master_data.assignment.view","tags":["Energy Master Data"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetParameters2Schema"},"example":"string"},{"name":"ppgId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"partyRole","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetParameters5Schema"},"example":"customer"},{"name":"asOf","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetParameters6Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated ppg customer assignments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","podId":"00000000-0000-4000-8000-000000000000","partyRole":"string","partyId":"00000000-0000-4000-8000-000000000000","validFrom":"string","validTo":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/energy_master_data/ppg-assignments?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["energy_master_data.assignment.view"],"x-require-auth":true}},"/energy_master_data/ppgs":{"get":{"operationId":"energy_master_data_get_energy_master_data_ppgs","summary":"List points of delivery (ppgs)","description":"Returns a paginated collection of points of delivery (ppgs) scoped to the authenticated organization.\n\nRequires features: energy_master_data.pod.view","tags":["Energy Master Data"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."},{"name":"hubId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"gsrn","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters7Schema"},"example":"string"},{"name":"osdId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters8Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"osdArea","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters9Schema"},"example":"string"},{"name":"commodity","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters10Schema"},"example":"GAS"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters11Schema"},"example":"DRAFT"},{"name":"asOf","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetParameters12Schema"},"example":"2025-01-01T00:00:00.000Z"}],"responses":{"200":{"description":"Paginated points of delivery (ppgs)","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","hubId":"00000000-0000-4000-8000-000000000000","code":"string","gsrn":"string","commodity":"GAS","osdArea":"string","osdId":null,"status":"DRAFT","createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/energy_master_data/ppgs?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["energy_master_data.pod.view"],"x-require-auth":true},"post":{"operationId":"energy_master_data_post_energy_master_data_ppgs","summary":"Create point of delivery (ppg)","description":"Create a PPG (validates GSRN checksum)\n\nRequires features: energy_master_data.pod.manage","tags":["Energy Master Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchema"},"example":{"hubId":"00000000-0000-4000-8000-000000000000","code":"string","osdArea":"string"}}},"description":"Create a PPG (validates GSRN checksum)"},"responses":{"201":{"description":"Point of Delivery (PPG) created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/energy_master_data/ppgs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"hubId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"code\\\": \\\"string\\\",\n  \\\"osdArea\\\": \\\"string\\\"\n}\""}],"x-require-features":["energy_master_data.pod.manage"],"x-require-auth":true},"put":{"operationId":"energy_master_data_put_energy_master_data_ppgs","summary":"Update point of delivery (ppg)","description":"Updates an existing point of delivery (ppg) by id.\n\nRequires features: energy_master_data.pod.manage","tags":["Energy Master Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the point of delivery (ppg)."},"responses":{"200":{"description":"Point of Delivery (PPG) updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/energy_master_data/ppgs\" \\\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":["energy_master_data.pod.manage"],"x-require-auth":true},"delete":{"operationId":"energy_master_data_delete_energy_master_data_ppgs","summary":"Delete point of delivery (ppg)","description":"Deletes a point of delivery (ppg) identified by id.\n\nRequires features: energy_master_data.pod.manage","tags":["Energy Master Data"],"parameters":[],"responses":{"200":{"description":"Point of Delivery (PPG) deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/energy_master_data/ppgs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["energy_master_data.pod.manage"],"x-require-auth":true}},"/energy_master_data/pods/{id}/assign":{"post":{"operationId":"energy_master_data_post_energy_master_data_pods_id_assign","summary":"Assign a party to a PPG (bitemporal)","description":"Adds or replaces the OPEN PpgCustomerAssignment for the given partyRole on this PPG. Closes the previous open row (if any) at validFrom and inserts a new row. Backdated edits earlier than the open row reject with 409 BitemporalOverlapError.\n\nRequires features: energy_master_data.assignment.manage","tags":["Energy Master Data"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostRequestBodyContentApplicationJsonSchema"},"example":{"partyRole":"customer","partyId":"00000000-0000-4000-8000-000000000000","validFrom":"2025-01-01T00:00:00.000Z"}}}},"responses":{"201":{"description":"Assignment created (and previous open row closed when applicable).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchema"},"example":{"ok":true,"assignment":{"id":"00000000-0000-4000-8000-000000000000","podId":"00000000-0000-4000-8000-000000000000","partyRole":"string","partyId":"00000000-0000-4000-8000-000000000000","validFrom":"string","validTo":null},"closedAssignmentId":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"PPG not found in caller scope.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"New window overlaps an existing OPEN row (backdated edit).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string","code":"BITEMPORAL_OVERLAP"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/energy_master_data/pods/:id/assign\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"partyRole\\\": \\\"customer\\\",\n  \\\"partyId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"validFrom\\\": \\\"2025-01-01T00:00:00.000Z\\\"\n}\""}],"x-require-features":["energy_master_data.assignment.manage"],"x-require-auth":true}},"/energy_master_data/pods/{id}/meter-install":{"post":{"operationId":"energy_master_data_post_energy_master_data_pods_id_meter_install","summary":"Install a meter on a PPG (bitemporal)","description":"Opens a new MeterAssignment row mounting the meter on this PPG and flips the meter status to INSTALLED in a single atomic flush.\n\nRequires features: energy_master_data.assignment.manage","tags":["Energy Master Data"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostRequestBodyContentApplicationJsonSchema"},"example":{"meterId":"00000000-0000-4000-8000-000000000000","podId":"00000000-0000-4000-8000-000000000000","validFrom":"2025-01-01T00:00:00.000Z"}}}},"responses":{"201":{"description":"Meter installed.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchema"},"example":{"ok":true,"assignment":{"id":"00000000-0000-4000-8000-000000000000","podId":"00000000-0000-4000-8000-000000000000","meterId":"00000000-0000-4000-8000-000000000000","validFrom":"string","validTo":null,"installReading":null}}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"PPG or meter not found.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"PPG already has an active meter, meter already mounted elsewhere, or status invalid.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string","code":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/energy_master_data/pods/:id/meter-install\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"meterId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"podId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"validFrom\\\": \\\"2025-01-01T00:00:00.000Z\\\"\n}\""}],"x-require-features":["energy_master_data.assignment.manage"],"x-require-auth":true}},"/energy_master_data/pods/{id}/meter-replace":{"post":{"operationId":"energy_master_data_post_energy_master_data_pods_id_meter_replace","summary":"Replace the active meter on a PPG (bitemporal)","description":"Closes the current open MeterAssignment at validFrom (stamping removal_reading + removal_reason if supplied), opens a new assignment for newMeterId, and flips both meter statuses inside a single atomic flush.\n\nRequires features: energy_master_data.assignment.manage","tags":["Energy Master Data"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchema"},"example":{"podId":"00000000-0000-4000-8000-000000000000","newMeterId":"00000000-0000-4000-8000-000000000000","validFrom":"2025-01-01T00:00:00.000Z"}}}},"responses":{"201":{"description":"Meter replaced.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchema"},"example":{"ok":true,"assignment":{"id":"00000000-0000-4000-8000-000000000000","podId":"00000000-0000-4000-8000-000000000000","meterId":"00000000-0000-4000-8000-000000000000","validFrom":"string","validTo":null,"installReading":null},"closedAssignmentId":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"PPG, replacement meter, or open assignment missing.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Replacement no-op, meter not installable, or backdated overlap.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses409ContentApplicationJsonSchema"},"example":{"error":"string","code":"string"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/energy_master_data/pods/:id/meter-replace\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"podId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"newMeterId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"validFrom\\\": \\\"2025-01-01T00:00:00.000Z\\\"\n}\""}],"x-require-features":["energy_master_data.assignment.manage"],"x-require-auth":true}},"/energy_master_data/pods/{id}/transfer":{"post":{"operationId":"energy_master_data_post_energy_master_data_pods_id_transfer","summary":"Transfer a PPG to another party (bitemporal)","description":"Closes the current OPEN PpgCustomerAssignment for the partyRole at validFrom and opens a new one for the new party. Returns 404 if no open assignment exists (use assign instead) and 409 BitemporalOverlapError on backdated edits.\n\nRequires features: energy_master_data.assignment.manage","tags":["Energy Master Data"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostRequestBodyContentApplicationJsonSchema"},"example":{"partyRole":"customer","partyId":"00000000-0000-4000-8000-000000000000","validFrom":"2025-01-01T00:00:00.000Z"}}}},"responses":{"200":{"description":"No-op (transfer target equals current party).","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchema"},"example":{"ok":true,"noop":true,"assignment":{"id":"00000000-0000-4000-8000-000000000000","podId":"00000000-0000-4000-8000-000000000000","partyRole":"string","partyId":"00000000-0000-4000-8000-000000000000","validFrom":"string","validTo":null}}}}},"201":{"description":"Transfer complete: previous row closed, new row opened.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchema"},"example":{"ok":true,"assignment":{"id":"00000000-0000-4000-8000-000000000000","podId":"00000000-0000-4000-8000-000000000000","partyRole":"string","partyId":"00000000-0000-4000-8000-000000000000","validFrom":"string","validTo":null},"closedAssignmentId":"00000000-0000-4000-8000-000000000000"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"PPG not found, or no open assignment to transfer.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses404ContentApplicationJsonSchema"},"example":{"error":"string"}}}},"409":{"description":"Backdated transfer would overlap an existing open window.","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses409ContentApplicationJsonSchema"},"example":{"error":"string","code":"BITEMPORAL_OVERLAP"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/energy_master_data/pods/:id/transfer\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"partyRole\\\": \\\"customer\\\",\n  \\\"partyId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"validFrom\\\": \\\"2025-01-01T00:00:00.000Z\\\"\n}\""}],"x-require-features":["energy_master_data.assignment.manage"],"x-require-auth":true}},"/connector_osd_gaz/batches":{"get":{"operationId":"connector_osd_gaz_get_connector_osd_gaz_batches","summary":"List osd import batches","description":"Returns a paginated collection of osd import batches scoped to the authenticated organization.\n\nRequires features: connector_osd_gaz.batch.view","tags":["Connector OSD Gaz"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetParameters1Schema"},"example":1},{"name":"connectionId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetParameters3Schema"},"example":"PENDING"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated osd import batches","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":null,"status":"PENDING","connectionId":"00000000-0000-4000-8000-000000000000","pullStartedAt":null,"completedAt":null,"totalFiles":1,"parsedOk":1,"parseErrors":1,"recordsDispatched":1,"errorDetail":null,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/connector_osd_gaz/batches?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_osd_gaz.batch.view"],"x-require-auth":true}},"/connector_osd_gaz/connections":{"get":{"operationId":"connector_osd_gaz_get_connector_osd_gaz_connections","summary":"List osd connections","description":"Returns a paginated collection of osd connections scoped to the authenticated organization.\n\nRequires features: connector_osd_gaz.connection.view","tags":["Connector OSD Gaz"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"osdId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetParameters5Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated osd connections","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","osdId":null,"host":"string","port":1,"dirIn":"string","dirOut":"string","dirArchive":"string","pullScheduleCron":null,"isActive":true,"status":"string","version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/connector_osd_gaz/connections?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_osd_gaz.connection.view"],"x-require-auth":true},"post":{"operationId":"connector_osd_gaz_post_connector_osd_gaz_connections","summary":"Create osd connection","description":"Create an OSD SFTP connection configuration\n\nRequires features: connector_osd_gaz.connection.manage","tags":["Connector OSD Gaz"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","name":"string","host":"string","port":22,"dirIn":"in/","dirOut":"out/","dirArchive":"archive/","isActive":true}}},"description":"Create an OSD SFTP connection configuration"},"responses":{"201":{"description":"OSD Connection created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/connector_osd_gaz/connections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"host\\\": \\\"string\\\",\n  \\\"port\\\": 22,\n  \\\"dirIn\\\": \\\"in/\\\",\n  \\\"dirOut\\\": \\\"out/\\\",\n  \\\"dirArchive\\\": \\\"archive/\\\",\n  \\\"isActive\\\": true\n}\""}],"x-require-features":["connector_osd_gaz.connection.manage"],"x-require-auth":true},"put":{"operationId":"connector_osd_gaz_put_connector_osd_gaz_connections","summary":"Update osd connection","description":"Updates an existing osd connection by id.\n\nRequires features: connector_osd_gaz.connection.manage","tags":["Connector OSD Gaz"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchema"},"example":{"port":22,"dirIn":"in/","dirOut":"out/","dirArchive":"archive/","isActive":true}}},"description":"Fields to update on the osd connection."},"responses":{"200":{"description":"OSD Connection updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/connector_osd_gaz/connections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"port\\\": 22,\n  \\\"dirIn\\\": \\\"in/\\\",\n  \\\"dirOut\\\": \\\"out/\\\",\n  \\\"dirArchive\\\": \\\"archive/\\\",\n  \\\"isActive\\\": true\n}\""}],"x-require-features":["connector_osd_gaz.connection.manage"],"x-require-auth":true},"delete":{"operationId":"connector_osd_gaz_delete_connector_osd_gaz_connections","summary":"Delete osd connection","description":"Deletes a osd connection identified by id.\n\nRequires features: connector_osd_gaz.connection.manage","tags":["Connector OSD Gaz"],"parameters":[],"responses":{"200":{"description":"OSD Connection deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/connector_osd_gaz/connections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_osd_gaz.connection.manage"],"x-require-auth":true}},"/connector_osd_gaz/files":{"get":{"operationId":"connector_osd_gaz_get_connector_osd_gaz_files","summary":"List osd file logs","description":"Returns a paginated collection of osd file logs scoped to the authenticated organization.\n\nRequires features: connector_osd_gaz.file.view","tags":["Connector OSD Gaz"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetParameters1Schema"},"example":1},{"name":"connectionId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"batchId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetParameters4Schema"},"example":"POBRANY"},{"name":"direction","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetParameters5Schema"},"example":"in"},{"name":"messageKind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetParameters6Schema"},"example":"READINGS"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetParameters7Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated osd file logs","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":"string","filename":"string","contentHash":"string","direction":"in","status":"POBRANY","messageKind":null,"connectionId":"00000000-0000-4000-8000-000000000000","batchId":null,"archivePath":null,"sizeBytes":null,"errorDetail":null,"sourceSystem":null,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/connector_osd_gaz/files?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_osd_gaz.file.view"],"x-require-auth":true}},"/connector_osd_gaz/switch-requests":{"post":{"operationId":"connector_osd_gaz_post_connector_osd_gaz_switch_requests","summary":"Send outbound switching request","description":"Serialises the switching payload to OSD format (XML/CSV per ACL), uploads it to the configured SFTP `out/` directory and emits `connector_osd_gaz.switch_request.sent`. Called internally by the switching module.\n\nRequires features: connector_osd_gaz.switch_request.send","tags":["Connector OSD Gaz"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostRequestBodyContentApplicationJsonSchema"},"example":{"connectionId":"00000000-0000-4000-8000-000000000000","ppgId":"00000000-0000-4000-8000-000000000000","switchingCaseId":"00000000-0000-4000-8000-000000000000","requestedSwitchDate":"string","payload":{}}}}},"responses":{"202":{"description":"Switch request accepted and queued for dispatch","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostResponses202ContentApplicationJsonSchema"},"example":{"message":"string","connectionId":"00000000-0000-4000-8000-000000000000","ppgId":"00000000-0000-4000-8000-000000000000","switchingCaseId":"00000000-0000-4000-8000-000000000000"}}}},"400":{"description":"Invalid payload","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/connector_osd_gaz/switch-requests\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"connectionId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"ppgId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"switchingCaseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"requestedSwitchDate\\\": \\\"string\\\",\n  \\\"payload\\\": {}\n}\""}],"x-require-features":["connector_osd_gaz.switch_request.send"],"x-require-auth":true}},"/connector_osd_gaz/connections/{id}/pull":{"post":{"operationId":"connector_osd_gaz_post_connector_osd_gaz_connections_id_pull","summary":"Trigger a manual SFTP pull","description":"Enqueues an immediate SFTP pull outside the scheduled cron window. The pull is idempotent (dedup via OsdFileLog). Returns 202 immediately; the actual transfer runs in the background.\n\nRequires features: connector_osd_gaz.pull.trigger","tags":["Connector OSD Gaz"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostRequestBodyContentApplicationJsonSchema"},"example":{"dryRun":false}}}},"responses":{"202":{"description":"Pull accepted and queued","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchema"},"example":{"message":"string","connectionId":"string","messageKind":null,"dryRun":true}}}},"400":{"description":"Invalid payload or missing connection id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"OSD connection not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/connector_osd_gaz/connections/:id/pull\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"dryRun\\\": false\n}\""}],"x-require-features":["connector_osd_gaz.pull.trigger"],"x-require-auth":true}},"/metering/corrections":{"get":{"operationId":"metering_get_metering_corrections","summary":"Metering Corrections (Correction Case)","description":"GET: list correction cases. POST: create a Correction Case for a closed billing period. NEVER silently overwrites a snapshot — creates a new MeteringDataVersion and emits metering.correction.applied.\n\nRequires features: metering.view","tags":["Metering"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringCorrectionsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringCorrectionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringCorrectionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/metering/corrections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.view"],"x-require-auth":true},"post":{"operationId":"metering_post_metering_corrections","summary":"Metering Corrections (Correction Case)","description":"GET: list correction cases. POST: create a Correction Case for a closed billing period. NEVER silently overwrites a snapshot — creates a new MeteringDataVersion and emits metering.correction.applied.\n\nRequires features: metering.correct","tags":["Metering"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringCorrectionsPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringCorrectionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringCorrectionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/metering/corrections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.correct"],"x-require-auth":true}},"/metering/periods":{"get":{"operationId":"metering_get_metering_periods","summary":"Billing Periods CRUD","description":"List and create billing periods per PPG. Periods must be contiguous (no gaps/overlaps). Close a period via POST /periods/:id/close.\n\nRequires features: metering.view","tags":["Metering"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/metering/periods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.view"],"x-require-auth":true},"post":{"operationId":"metering_post_metering_periods","summary":"Billing Periods CRUD","description":"List and create billing periods per PPG. Periods must be contiguous (no gaps/overlaps). Close a period via POST /periods/:id/close.\n\nRequires features: metering.manage","tags":["Metering"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/metering/periods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.manage"],"x-require-auth":true},"put":{"operationId":"metering_put_metering_periods","summary":"Billing Periods CRUD","description":"List and create billing periods per PPG. Periods must be contiguous (no gaps/overlaps). Close a period via POST /periods/:id/close.\n\nRequires features: metering.manage","tags":["Metering"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/metering/periods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.manage"],"x-require-auth":true},"delete":{"operationId":"metering_delete_metering_periods","summary":"Billing Periods CRUD","description":"List and create billing periods per PPG. Periods must be contiguous (no gaps/overlaps). Close a period via POST /periods/:id/close.\n\nRequires features: metering.manage","tags":["Metering"],"parameters":[],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/metering/periods\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.manage"],"x-require-auth":true}},"/metering/readings":{"get":{"operationId":"metering_get_metering_readings","summary":"Meter Readings CRUD","description":"Import, list, update and delete meter readings. POST triggers VEE pipeline. Filter by ppgId, meterId, billingPeriodId, source, quality, readAt range.\n\nRequires features: metering.view","tags":["Metering"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/metering/readings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.view"],"x-require-auth":true},"post":{"operationId":"metering_post_metering_readings","summary":"Meter Readings CRUD","description":"Import, list, update and delete meter readings. POST triggers VEE pipeline. Filter by ppgId, meterId, billingPeriodId, source, quality, readAt range.\n\nRequires features: metering.manage","tags":["Metering"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/metering/readings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.manage"],"x-require-auth":true},"put":{"operationId":"metering_put_metering_readings","summary":"Meter Readings CRUD","description":"Import, list, update and delete meter readings. POST triggers VEE pipeline. Filter by ppgId, meterId, billingPeriodId, source, quality, readAt range.\n\nRequires features: metering.manage","tags":["Metering"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/metering/readings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.manage"],"x-require-auth":true},"delete":{"operationId":"metering_delete_metering_readings","summary":"Meter Readings CRUD","description":"Import, list, update and delete meter readings. POST triggers VEE pipeline. Filter by ppgId, meterId, billingPeriodId, source, quality, readAt range.\n\nRequires features: metering.manage","tags":["Metering"],"parameters":[],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/metering/readings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.manage"],"x-require-auth":true}},"/metering/{orgSlug}/portal/self-reading":{"post":{"operationId":"metering_post_metering_orgSlug_portal_self_reading","summary":"Customer Self-Reading (eBOK)","description":"Submit a customer meter self-reading via the eBOK portal (§9E). Authenticated through customer portal session; PPG ownership verified against PpgCustomerAssignment in energy_master_data. Creates a SelfReading with status=PENDING for back-office review.","tags":["Metering"],"parameters":[{"name":"orgSlug","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMeteringOrgSlugPortalSelfReadingPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringOrgSlugPortalSelfReadingPostResponses201ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/metering/:orgSlug/portal/self-reading\" \\\n  -H \"Accept: application/json\""}]}},"/metering/periods/{id}/build":{"post":{"operationId":"metering_post_metering_periods_id_build","summary":"Build Billing Period","description":"Validate readings in the period, detect gaps, check completeness. Transitions status: DRAFT → BUILDING → COMPLETE.\n\nRequires features: metering.manage","tags":["Metering"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdBuildPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdBuildPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdBuildPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdBuildPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/metering/periods/:id/build\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.manage"],"x-require-auth":true}},"/metering/periods/{id}/close":{"post":{"operationId":"metering_post_metering_periods_id_close","summary":"Close Billing Period","description":"Closes a COMPLETE billing period. Creates an immutable MeteringDataSnapshot and emits metering.period.closed to trigger the meterToCash billing saga. Period must be in COMPLETE status.\n\nRequires features: metering.close_period","tags":["Metering"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdClosePostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdClosePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdClosePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdClosePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/metering/periods/:id/close\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.close_period"],"x-require-auth":true}},"/metering/readings/{id}/estimate":{"post":{"operationId":"metering_post_metering_readings_id_estimate","summary":"Start Meter Reading Estimation","description":"Creates an EstimatedReading (VEE §5G) for the given reading with status=PENDING. Requires USER_TASK acceptance in workflows before quality becomes szacunkowy.\n\nRequires features: metering.manage","tags":["Metering"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsIdEstimatePostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsIdEstimatePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsIdEstimatePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMeteringReadingsIdEstimatePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/metering/readings/:id/estimate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["metering.manage"],"x-require-auth":true}},"/market_data/fixings":{"get":{"operationId":"market_data_get_market_data_fixings","summary":"List price fixings","description":"Returns a paginated collection of price fixings scoped to the authenticated organization.\n\nRequires features: market_data.view","tags":["Market Data"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetParameters1Schema"},"example":1},{"name":"indexRefId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetParameters3Schema"},"example":"DRAFT"},{"name":"fixingDateFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetParameters4Schema"},"example":"string"},{"name":"fixingDateTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetParameters5Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated price fixings","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","indexRefId":"00000000-0000-4000-8000-000000000000","fixingDate":"string","value":1,"currency":"string","status":"DRAFT","publishedAt":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/market_data/fixings?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["market_data.view"],"x-require-auth":true},"post":{"operationId":"market_data_post_market_data_fixings","summary":"Create price fixing","description":"Creates a new price fixing.\n\nRequires features: market_data.manage","tags":["Market Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchema"},"example":{"indexRefId":"00000000-0000-4000-8000-000000000000","fixingDate":"string","value":1,"currency":"PLN"}}},"description":"Payload describing the price fixing to create."},"responses":{"201":{"description":"Price Fixing created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/market_data/fixings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"indexRefId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"fixingDate\\\": \\\"string\\\",\n  \\\"value\\\": 1,\n  \\\"currency\\\": \\\"PLN\\\"\n}\""}],"x-require-features":["market_data.manage"],"x-require-auth":true},"put":{"operationId":"market_data_put_market_data_fixings","summary":"Update price fixing","description":"Updates an existing price fixing.\n\nRequires features: market_data.manage","tags":["Market Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchema"},"example":{"currency":"PLN"}}},"description":"Fields to update on the price fixing."},"responses":{"200":{"description":"Price Fixing updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/market_data/fixings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"currency\\\": \\\"PLN\\\"\n}\""}],"x-require-features":["market_data.manage"],"x-require-auth":true},"delete":{"operationId":"market_data_delete_market_data_fixings","summary":"Delete price fixing","description":"Soft-deletes a price fixing.\n\nRequires features: market_data.manage","tags":["Market Data"],"parameters":[],"responses":{"200":{"description":"Price Fixing deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/market_data/fixings\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["market_data.manage"],"x-require-auth":true}},"/market_data/indexes":{"get":{"operationId":"market_data_get_market_data_indexes","summary":"List index references","description":"Returns a paginated collection of index references scoped to the authenticated organization.\n\nRequires features: market_data.view","tags":["Market Data"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetParameters2Schema"},"example":"string"},{"name":"commodity","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetParameters3Schema"},"example":"string"},{"name":"sourceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated index references","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","commodity":"string","currency":"string","unit":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/market_data/indexes?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["market_data.view"],"x-require-auth":true},"post":{"operationId":"market_data_post_market_data_indexes","summary":"Create index reference","description":"Creates a new index reference.\n\nRequires features: market_data.manage","tags":["Market Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","name":"string","commodity":"string","currency":"PLN","unit":"MWh"}}},"description":"Payload describing the index reference to create."},"responses":{"201":{"description":"Index Reference created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/market_data/indexes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"commodity\\\": \\\"string\\\",\n  \\\"currency\\\": \\\"PLN\\\",\n  \\\"unit\\\": \\\"MWh\\\"\n}\""}],"x-require-features":["market_data.manage"],"x-require-auth":true},"put":{"operationId":"market_data_put_market_data_indexes","summary":"Update index reference","description":"Updates an existing index reference.\n\nRequires features: market_data.manage","tags":["Market Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchema"},"example":{"currency":"PLN","unit":"MWh"}}},"description":"Fields to update on the index reference."},"responses":{"200":{"description":"Index Reference updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/market_data/indexes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"currency\\\": \\\"PLN\\\",\n  \\\"unit\\\": \\\"MWh\\\"\n}\""}],"x-require-features":["market_data.manage"],"x-require-auth":true},"delete":{"operationId":"market_data_delete_market_data_indexes","summary":"Delete index reference","description":"Soft-deletes a index reference.\n\nRequires features: market_data.manage","tags":["Market Data"],"parameters":[],"responses":{"200":{"description":"Index Reference deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/market_data/indexes\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["market_data.manage"],"x-require-auth":true}},"/market_data/sources":{"get":{"operationId":"market_data_get_market_data_sources","summary":"List market data sources","description":"Returns a paginated collection of market data sources scoped to the authenticated organization.\n\nRequires features: market_data.view","tags":["Market Data"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetParameters2Schema"},"example":"string"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetParameters3Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated market data sources","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","sourceType":"string","isActive":true}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/market_data/sources?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["market_data.view"],"x-require-auth":true},"post":{"operationId":"market_data_post_market_data_sources","summary":"Create market data source","description":"Creates a new market data source.\n\nRequires features: market_data.manage","tags":["Market Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","name":"string","sourceType":"TGE","isActive":true}}},"description":"Payload describing the market data source to create."},"responses":{"201":{"description":"Market Data Source created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/market_data/sources\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"sourceType\\\": \\\"TGE\\\",\n  \\\"isActive\\\": true\n}\""}],"x-require-features":["market_data.manage"],"x-require-auth":true},"put":{"operationId":"market_data_put_market_data_sources","summary":"Update market data source","description":"Updates an existing market data source.\n\nRequires features: market_data.manage","tags":["Market Data"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchema"},"example":{"isActive":true}}},"description":"Fields to update on the market data source."},"responses":{"200":{"description":"Market Data Source updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/market_data/sources\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"isActive\\\": true\n}\""}],"x-require-features":["market_data.manage"],"x-require-auth":true},"delete":{"operationId":"market_data_delete_market_data_sources","summary":"Delete market data source","description":"Soft-deletes a market data source.\n\nRequires features: market_data.manage","tags":["Market Data"],"parameters":[],"responses":{"200":{"description":"Market Data Source deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/market_data/sources\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["market_data.manage"],"x-require-auth":true}},"/pricing/calculations":{"get":{"operationId":"pricing_get_pricing_calculations","summary":"List rating calculations","description":"Returns a paginated collection of rating calculations scoped to the authenticated organization.\n\nRequires features: pricing.view","tags":["Pricing"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetParameters1Schema"},"example":1},{"name":"ppgId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"billingPeriodId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetParameters5Schema"},"example":"wstepna"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated rating calculations","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","ppgId":"00000000-0000-4000-8000-000000000000","ratingDate":"string","totalNet":1,"currency":"string","status":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/pricing/calculations?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.view"],"x-require-auth":true},"post":{"operationId":"pricing_post_pricing_calculations","summary":"Rating Calculation management","description":"Requires features: pricing.rate","tags":["Pricing"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/pricing/calculations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.rate"],"x-require-auth":true},"put":{"operationId":"pricing_put_pricing_calculations","summary":"Update rating calculation","description":"Updates an existing rating calculation.\n\nRequires features: pricing.rate","tags":["Pricing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPutRequestBodyContentApplicationJsonSchema"},"example":{}}},"description":"Fields to update on the rating calculation."},"responses":{"200":{"description":"Rating Calculation updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/pricing/calculations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{}\""}],"x-require-features":["pricing.rate"],"x-require-auth":true},"delete":{"operationId":"pricing_delete_pricing_calculations","summary":"Delete rating calculation","description":"Soft-deletes a rating calculation.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"responses":{"200":{"description":"Rating Calculation deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingCalculationsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/pricing/calculations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.manage"],"x-require-auth":true}},"/pricing/charge-components":{"get":{"operationId":"pricing_get_pricing_charge_components","summary":"List charge components","description":"Returns a paginated collection of charge components scoped to the authenticated organization.\n\nRequires features: pricing.view","tags":["Pricing"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetParameters1Schema"},"example":1},{"name":"tariffVersionId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"kind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetParameters3Schema"},"example":"energia_czynna"},{"name":"tariffScope","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetParameters4Schema"},"example":"SPRZEDAWCA"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated charge components","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","tariffVersionId":"00000000-0000-4000-8000-000000000000","kind":"string","tariffScope":"string","unitPrice":1,"currency":"string","passThrough":true,"marginEligible":true}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/pricing/charge-components?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.view"],"x-require-auth":true},"post":{"operationId":"pricing_post_pricing_charge_components","summary":"Create charge component","description":"Creates a new charge component.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchema"},"example":{"tariffVersionId":"00000000-0000-4000-8000-000000000000","kind":"energia_czynna","tariffScope":"SPRZEDAWCA","unit":"string","priceUnit":"string","unitPrice":1,"currency":"PLN","passThrough":false,"marginEligible":true,"position":0}}},"description":"Payload describing the charge component to create."},"responses":{"201":{"description":"Charge Component created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/pricing/charge-components\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"tariffVersionId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"kind\\\": \\\"energia_czynna\\\",\n  \\\"tariffScope\\\": \\\"SPRZEDAWCA\\\",\n  \\\"unit\\\": \\\"string\\\",\n  \\\"priceUnit\\\": \\\"string\\\",\n  \\\"unitPrice\\\": 1,\n  \\\"currency\\\": \\\"PLN\\\",\n  \\\"passThrough\\\": false,\n  \\\"marginEligible\\\": true,\n  \\\"position\\\": 0\n}\""}],"x-require-features":["pricing.manage"],"x-require-auth":true},"put":{"operationId":"pricing_put_pricing_charge_components","summary":"Update charge component","description":"Updates an existing charge component.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchema"},"example":{"currency":"PLN","passThrough":false,"marginEligible":true,"position":0}}},"description":"Fields to update on the charge component."},"responses":{"200":{"description":"Charge Component updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/pricing/charge-components\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"currency\\\": \\\"PLN\\\",\n  \\\"passThrough\\\": false,\n  \\\"marginEligible\\\": true,\n  \\\"position\\\": 0\n}\""}],"x-require-features":["pricing.manage"],"x-require-auth":true},"delete":{"operationId":"pricing_delete_pricing_charge_components","summary":"Delete charge component","description":"Soft-deletes a charge component.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"responses":{"200":{"description":"Charge Component deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/pricing/charge-components\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.manage"],"x-require-auth":true}},"/pricing/formulas":{"get":{"operationId":"pricing_get_pricing_formulas","summary":"List pricing formulas","description":"Returns a paginated collection of pricing formulas scoped to the authenticated organization.\n\nRequires features: pricing.view","tags":["Pricing"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetParameters2Schema"},"example":"string"},{"name":"kind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetParameters3Schema"},"example":"fixed"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetParameters4Schema"},"example":"DRAFT"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated pricing formulas","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","kind":"fixed","currency":"string","status":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/pricing/formulas?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.view"],"x-require-auth":true},"post":{"operationId":"pricing_post_pricing_formulas","summary":"Create pricing formula","description":"Creates a new pricing formula.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","kind":"fixed","currency":"PLN","status":"DRAFT"}}},"description":"Payload describing the pricing formula to create."},"responses":{"201":{"description":"Pricing Formula created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/pricing/formulas\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\",\n  \\\"kind\\\": \\\"fixed\\\",\n  \\\"currency\\\": \\\"PLN\\\",\n  \\\"status\\\": \\\"DRAFT\\\"\n}\""}],"x-require-features":["pricing.manage"],"x-require-auth":true},"put":{"operationId":"pricing_put_pricing_formulas","summary":"Update pricing formula","description":"Updates an existing pricing formula.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchema"},"example":{"currency":"PLN","status":"DRAFT"}}},"description":"Fields to update on the pricing formula."},"responses":{"200":{"description":"Pricing Formula updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/pricing/formulas\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"currency\\\": \\\"PLN\\\",\n  \\\"status\\\": \\\"DRAFT\\\"\n}\""}],"x-require-features":["pricing.manage"],"x-require-auth":true},"delete":{"operationId":"pricing_delete_pricing_formulas","summary":"Delete pricing formula","description":"Soft-deletes a pricing formula.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"responses":{"200":{"description":"Pricing Formula deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingFormulasDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/pricing/formulas\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.manage"],"x-require-auth":true}},"/pricing/products":{"get":{"operationId":"pricing_get_pricing_products","summary":"List pricing products","description":"Returns a paginated collection of pricing products scoped to the authenticated organization.\n\nRequires features: pricing.view","tags":["Pricing"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsGetParameters2Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsGetParameters3Schema"},"example":"DRAFT"},{"name":"commodity","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsGetParameters4Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated pricing products","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","commodity":"string","status":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/pricing/products?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.view"],"x-require-auth":true},"post":{"operationId":"pricing_post_pricing_products","summary":"Create pricing product","description":"Creates a new pricing product.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","commodity":"GAS","status":"DRAFT"}}},"description":"Payload describing the pricing product to create."},"responses":{"201":{"description":"Pricing Product created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/pricing/products\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"name\\\": \\\"string\\\",\n  \\\"commodity\\\": \\\"GAS\\\",\n  \\\"status\\\": \\\"DRAFT\\\"\n}\""}],"x-require-features":["pricing.manage"],"x-require-auth":true},"put":{"operationId":"pricing_put_pricing_products","summary":"Update pricing product","description":"Updates an existing pricing product.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchema"},"example":{"commodity":"GAS","status":"DRAFT"}}},"description":"Fields to update on the pricing product."},"responses":{"200":{"description":"Pricing Product updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/pricing/products\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"commodity\\\": \\\"GAS\\\",\n  \\\"status\\\": \\\"DRAFT\\\"\n}\""}],"x-require-features":["pricing.manage"],"x-require-auth":true},"delete":{"operationId":"pricing_delete_pricing_products","summary":"Delete pricing product","description":"Soft-deletes a pricing product.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"responses":{"200":{"description":"Pricing Product deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingProductsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/pricing/products\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.manage"],"x-require-auth":true}},"/pricing/rate":{"post":{"operationId":"pricing_post_pricing_rate","summary":"POST /pricing/rate","description":"Requires features: pricing.rate","tags":["Pricing"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingRatePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingRatePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingRatePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/pricing/rate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.rate"],"x-require-auth":true}},"/pricing/tariffs":{"get":{"operationId":"pricing_get_pricing_tariffs","summary":"List tariff versions","description":"Returns a paginated collection of tariff versions scoped to the authenticated organization.\n\nRequires features: pricing.view","tags":["Pricing"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetParameters2Schema"},"example":"string"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetParameters3Schema"},"example":"DRAFT"},{"name":"tariffScope","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetParameters4Schema"},"example":"SPRZEDAWCA"},{"name":"productId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetParameters5Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"asOf","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetParameters6Schema"},"example":"2025-01-01T00:00:00.000Z"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated tariff versions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","tariffCode":"string","tariffScope":"SPRZEDAWCA","status":"string","validFrom":null,"validTo":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/pricing/tariffs?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.view"],"x-require-auth":true},"post":{"operationId":"pricing_post_pricing_tariffs","summary":"Create tariff version","description":"Creates a new tariff version.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchema"},"example":{"tariffCode":"string","tariffScope":"SPRZEDAWCA","status":"DRAFT"}}},"description":"Payload describing the tariff version to create."},"responses":{"201":{"description":"Tariff Version created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/pricing/tariffs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"tariffCode\\\": \\\"string\\\",\n  \\\"tariffScope\\\": \\\"SPRZEDAWCA\\\",\n  \\\"status\\\": \\\"DRAFT\\\"\n}\""}],"x-require-features":["pricing.manage"],"x-require-auth":true},"put":{"operationId":"pricing_put_pricing_tariffs","summary":"Update tariff version","description":"Updates an existing tariff version.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchema"},"example":{"status":"DRAFT"}}},"description":"Fields to update on the tariff version."},"responses":{"200":{"description":"Tariff Version updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/pricing/tariffs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"status\\\": \\\"DRAFT\\\"\n}\""}],"x-require-features":["pricing.manage"],"x-require-auth":true},"delete":{"operationId":"pricing_delete_pricing_tariffs","summary":"Delete tariff version","description":"Soft-deletes a tariff version.\n\nRequires features: pricing.manage","tags":["Pricing"],"parameters":[],"responses":{"200":{"description":"Tariff Version deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPricingTariffsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/pricing/tariffs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["pricing.manage"],"x-require-auth":true}},"/contracts/attachments":{"get":{"operationId":"contracts_get_contracts_attachments","summary":"List contract attachments","description":"Returns a paginated collection of contract attachments scoped to the authenticated organization.\n\nRequires features: contracts.view","tags":["Contracts"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetParameters1Schema"},"example":1},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetParameters3Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated contract attachments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","contractId":"00000000-0000-4000-8000-000000000000","storageKey":"string","mimeType":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/contracts/attachments?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.view"],"x-require-auth":true},"post":{"operationId":"contracts_post_contracts_attachments","summary":"Create contract attachment","description":"Upload metadata; filename encrypted at rest.\n\nRequires features: contracts.manage","tags":["Contracts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchema"},"example":{"contractId":"00000000-0000-4000-8000-000000000000","filename":"string","mimeType":null,"storageKey":"string","sizeBytes":null}}},"description":"Upload metadata; filename encrypted at rest."},"responses":{"201":{"description":"Contract Attachment created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/attachments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"contractId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"filename\\\": \\\"string\\\",\n  \\\"mimeType\\\": null,\n  \\\"storageKey\\\": \\\"string\\\",\n  \\\"sizeBytes\\\": null\n}\""}],"x-require-features":["contracts.manage"],"x-require-auth":true},"delete":{"operationId":"contracts_delete_contracts_attachments","summary":"Contract Attachment management","description":"Requires features: contracts.manage","tags":["Contracts"],"parameters":[],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/contracts/attachments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.manage"],"x-require-auth":true}},"/contracts/calendar":{"get":{"operationId":"contracts_get_contracts_calendar","summary":"List contract calendar events","description":"Returns a paginated collection of contract calendar events scoped to the authenticated organization.\n\nRequires features: contracts.view","tags":["Contracts"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetParameters1Schema"},"example":1},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"kind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetParameters3Schema"},"example":"START_DOSTAW"},{"name":"dueBefore","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetParameters4Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated contract calendar events","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","calendarId":"00000000-0000-4000-8000-000000000000","kind":"string","dueAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/contracts/calendar?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.view"],"x-require-auth":true},"post":{"operationId":"contracts_post_contracts_calendar","summary":"Create contract calendar event","description":"Creates a new contract calendar event.\n\nRequires features: contracts.manage","tags":["Contracts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchema"},"example":{"calendarId":"00000000-0000-4000-8000-000000000000","kind":"START_DOSTAW","dueAt":"string","note":null}}},"description":"Payload describing the contract calendar event to create."},"responses":{"201":{"description":"Contract Calendar Event created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/calendar\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"calendarId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"kind\\\": \\\"START_DOSTAW\\\",\n  \\\"dueAt\\\": \\\"string\\\",\n  \\\"note\\\": null\n}\""}],"x-require-features":["contracts.manage"],"x-require-auth":true},"delete":{"operationId":"contracts_delete_contracts_calendar","summary":"Contract Calendar Event management","description":"Requires features: contracts.manage","tags":["Contracts"],"parameters":[],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsCalendarDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/contracts/calendar\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.manage"],"x-require-auth":true}},"/contracts/contracts":{"get":{"operationId":"contracts_get_contracts_contracts","summary":"List contracts","description":"Returns a paginated collection of contracts scoped to the authenticated organization.\n\nRequires features: contracts.view","tags":["Contracts"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsGetParameters1Schema"},"example":1},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsGetParameters3Schema"},"example":"UMOWA_ROBOCZA"},{"name":"type","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsGetParameters4Schema"},"example":"sprzedaz"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsGetParameters5Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsGetParameters6Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated contracts","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":"string","type":"string","status":"string","customerId":"00000000-0000-4000-8000-000000000000","sellerId":null,"validFrom":"string","validTo":null,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/contracts/contracts?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.view"],"x-require-auth":true},"post":{"operationId":"contracts_post_contracts_contracts","summary":"Create contract","description":"Create a draft contract.\n\nRequires features: contracts.manage","tags":["Contracts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchema"},"example":{"type":"sprzedaz","status":"UMOWA_ROBOCZA","customerId":"00000000-0000-4000-8000-000000000000","sellerId":null,"aggregatorId":null,"serviceModel":null,"productModel":null,"validFrom":"string","validTo":null,"sourceSystem":null,"owner":null}}},"description":"Create a draft contract."},"responses":{"201":{"description":"Contract created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/contracts\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"type\\\": \\\"sprzedaz\\\",\n  \\\"status\\\": \\\"UMOWA_ROBOCZA\\\",\n  \\\"customerId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"sellerId\\\": null,\n  \\\"aggregatorId\\\": null,\n  \\\"serviceModel\\\": null,\n  \\\"productModel\\\": null,\n  \\\"validFrom\\\": \\\"string\\\",\n  \\\"validTo\\\": null,\n  \\\"sourceSystem\\\": null,\n  \\\"owner\\\": null\n}\""}],"x-require-features":["contracts.manage"],"x-require-auth":true},"put":{"operationId":"contracts_put_contracts_contracts","summary":"Update contract","description":"Updates an existing contract by id.\n\nRequires features: contracts.manage","tags":["Contracts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchema"},"example":{"status":"UMOWA_ROBOCZA","sellerId":null,"aggregatorId":null,"serviceModel":null,"productModel":null,"validTo":null,"sourceSystem":null,"owner":null,"id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the contract."},"responses":{"200":{"description":"Contract updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/contracts/contracts\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"status\\\": \\\"UMOWA_ROBOCZA\\\",\n  \\\"sellerId\\\": null,\n  \\\"aggregatorId\\\": null,\n  \\\"serviceModel\\\": null,\n  \\\"productModel\\\": null,\n  \\\"validTo\\\": null,\n  \\\"sourceSystem\\\": null,\n  \\\"owner\\\": null,\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-features":["contracts.manage"],"x-require-auth":true},"delete":{"operationId":"contracts_delete_contracts_contracts","summary":"Delete contract","description":"Deletes a contract identified by id.\n\nRequires features: contracts.manage","tags":["Contracts"],"parameters":[],"responses":{"200":{"description":"Contract deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/contracts/contracts\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.manage"],"x-require-auth":true}},"/contracts/poa":{"get":{"operationId":"contracts_get_contracts_poa","summary":"List powers of attorney","description":"Returns a paginated collection of powers of attorney scoped to the authenticated organization.\n\nRequires features: contracts.view","tags":["Contracts"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaGetParameters1Schema"},"example":1},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"principalCustomerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated powers of attorney","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","principalCustomerId":"00000000-0000-4000-8000-000000000000","status":"string","validFrom":"string","validTo":null}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/contracts/poa?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.view"],"x-require-auth":true},"post":{"operationId":"contracts_post_contracts_poa","summary":"Create power of attorney","description":"Register a Power of Attorney (PII fields encrypted at rest).\n\nRequires features: contracts.manage","tags":["Contracts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchema"},"example":{"contractId":null,"principalCustomerId":"00000000-0000-4000-8000-000000000000","validFrom":"string","validTo":null,"scopes":["assignment"],"businessKey":null}}},"description":"Register a Power of Attorney (PII fields encrypted at rest)."},"responses":{"201":{"description":"Power of Attorney created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/poa\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"contractId\\\": null,\n  \\\"principalCustomerId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"validFrom\\\": \\\"string\\\",\n  \\\"validTo\\\": null,\n  \\\"scopes\\\": [\n    \\\"assignment\\\"\n  ],\n  \\\"businessKey\\\": null\n}\""}],"x-require-features":["contracts.manage"],"x-require-auth":true},"delete":{"operationId":"contracts_delete_contracts_poa","summary":"Power of Attorney management","description":"Requires features: contracts.manage","tags":["Contracts"],"parameters":[],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPoaDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/contracts/poa\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.manage"],"x-require-auth":true}},"/contracts/ppg-assignments":{"get":{"operationId":"contracts_get_contracts_ppg_assignments","summary":"List contract ppg assignments","description":"Returns a paginated collection of contract ppg assignments scoped to the authenticated organization.\n\nRequires features: contracts.view","tags":["Contracts"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetParameters1Schema"},"example":1},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ppgId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"asOf","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetParameters4Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated contract ppg assignments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","contractId":"00000000-0000-4000-8000-000000000000","ppgId":"00000000-0000-4000-8000-000000000000","validFrom":"string","validTo":null,"status":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/contracts/ppg-assignments?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.view"],"x-require-auth":true},"post":{"operationId":"contracts_post_contracts_ppg_assignments","summary":"Create contract ppg assignment","description":"Create a bitemporal PPG ↔ contract assignment.\n\nRequires features: contracts.assign_ppg","tags":["Contracts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchema"},"example":{"contractId":"00000000-0000-4000-8000-000000000000","ppgId":"00000000-0000-4000-8000-000000000000","validFrom":"string","status":"ACTIVE","sourceSystem":null}}},"description":"Create a bitemporal PPG ↔ contract assignment."},"responses":{"201":{"description":"Contract PPG Assignment created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/ppg-assignments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"contractId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"ppgId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"validFrom\\\": \\\"string\\\",\n  \\\"status\\\": \\\"ACTIVE\\\",\n  \\\"sourceSystem\\\": null\n}\""}],"x-require-features":["contracts.assign_ppg"],"x-require-auth":true},"delete":{"operationId":"contracts_delete_contracts_ppg_assignments","summary":"Contract PPG Assignment management","description":"Requires features: contracts.assign_ppg","tags":["Contracts"],"parameters":[],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/contracts/ppg-assignments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.assign_ppg"],"x-require-auth":true}},"/contracts/price-assignments":{"get":{"operationId":"contracts_get_contracts_price_assignments","summary":"List contract price assignments","description":"Returns a paginated collection of contract price assignments scoped to the authenticated organization.\n\nRequires features: contracts.view","tags":["Contracts"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetParameters1Schema"},"example":1},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"priceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"asOf","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetParameters4Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated contract price assignments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","contractId":"00000000-0000-4000-8000-000000000000","priceId":"00000000-0000-4000-8000-000000000000","validFrom":"string","validTo":null,"status":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/contracts/price-assignments?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.view"],"x-require-auth":true},"post":{"operationId":"contracts_post_contracts_price_assignments","summary":"Create contract price assignment","description":"Creates a new contract price assignment.\n\nRequires features: contracts.manage","tags":["Contracts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchema"},"example":{"contractId":"00000000-0000-4000-8000-000000000000","priceId":"00000000-0000-4000-8000-000000000000","validFrom":"string","validTo":null,"businessKey":null}}},"description":"Payload describing the contract price assignment to create."},"responses":{"201":{"description":"Contract Price Assignment created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/price-assignments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"contractId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"priceId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"validFrom\\\": \\\"string\\\",\n  \\\"validTo\\\": null,\n  \\\"businessKey\\\": null\n}\""}],"x-require-features":["contracts.manage"],"x-require-auth":true},"delete":{"operationId":"contracts_delete_contracts_price_assignments","summary":"Contract Price Assignment management","description":"Requires features: contracts.manage","tags":["Contracts"],"parameters":[],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/contracts/price-assignments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.manage"],"x-require-auth":true}},"/contracts/templates":{"get":{"operationId":"contracts_get_contracts_templates","summary":"List contract templates","description":"Returns a paginated collection of contract templates scoped to the authenticated organization.\n\nRequires features: contracts.view","tags":["Contracts"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetParameters1Schema"},"example":1},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetParameters2Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetParameters3Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated contract templates","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","isActive":true}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/contracts/templates?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.view"],"x-require-auth":true},"post":{"operationId":"contracts_post_contracts_templates","summary":"Create contract template","description":"Creates a new contract template.\n\nRequires features: contracts.manage","tags":["Contracts"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","name":"string","isActive":true}}},"description":"Payload describing the contract template to create."},"responses":{"201":{"description":"Contract Template created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/templates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"isActive\\\": true\n}\""}],"x-require-features":["contracts.manage"],"x-require-auth":true},"put":{"operationId":"contracts_put_contracts_templates","summary":"Contract Template management","description":"Requires features: contracts.manage","tags":["Contracts"],"parameters":[],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPutResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/contracts/templates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.manage"],"x-require-auth":true},"delete":{"operationId":"contracts_delete_contracts_templates","summary":"Contract Template management","description":"Requires features: contracts.manage","tags":["Contracts"],"parameters":[],"responses":{"204":{"description":"Success"},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsTemplatesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/contracts/templates\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.manage"],"x-require-auth":true}},"/contracts/versions":{"get":{"operationId":"contracts_get_contracts_versions","summary":"List contract versions","description":"Returns a paginated collection of contract versions scoped to the authenticated organization.\n\nRequires features: contracts.view","tags":["Contracts"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetParameters1Schema"},"example":1},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetParameters3Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated contract versions","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","contractId":"00000000-0000-4000-8000-000000000000","versionNumber":1,"changeKind":"string","status":"string","createdAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/contracts/versions?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.view"],"x-require-auth":true}},"/contracts/contracts/{id}/activate":{"post":{"operationId":"contracts_post_contracts_contracts_id_activate","summary":"Activate a contract (PODPISANA → AKTYWNA)","description":"Transitions a signed contract to active. Consent gate fail-closed is deferred to customers.consents extension (post-Fala 3). Emits `contracts.contract.activated`.\n\nRequires features: contracts.activate","tags":["Contracts (CLM)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdActivatePostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdActivatePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdActivatePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdActivatePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/contracts/:id/activate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.activate"],"x-require-auth":true}},"/contracts/contracts/{id}/amend":{"post":{"operationId":"contracts_post_contracts_contracts_id_amend","summary":"Amend a contract (Correction-safe)","description":"Creates a new ContractVersion + ContractAmendment row without overwriting the previous version. If the source status was AKTYWNA, the contract transitions to ANEKSOWANA. Emits `contracts.contract.amended`.\n\nRequires features: contracts.amend","tags":["Contracts (CLM)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAmendPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAmendPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAmendPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAmendPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/contracts/:id/amend\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.amend"],"x-require-auth":true}},"/contracts/contracts/{id}/assign-ppg":{"post":{"operationId":"contracts_post_contracts_contracts_id_assign_ppg","summary":"Assign a PPG to a contract (bitemporal)","description":"Closes any open ContractPpgAssignment for the (contract, PPG) pair and opens a new one starting at `validFrom`. Emits `contracts.ppg.added` (switching saga trigger per audit F1 §P-04).\n\nRequires features: contracts.assign_ppg","tags":["Contracts (CLM)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAssignPpgPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAssignPpgPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAssignPpgPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAssignPpgPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/contracts/:id/assign-ppg\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.assign_ppg"],"x-require-auth":true}},"/contracts/contracts/{id}/remove-ppg":{"post":{"operationId":"contracts_post_contracts_contracts_id_remove_ppg","summary":"Remove a PPG from a contract (bitemporal close)","description":"Sets validTo on the open ContractPpgAssignment instead of deleting it. Emits `contracts.ppg.removed`.\n\nRequires features: contracts.assign_ppg","tags":["Contracts (CLM)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRemovePpgPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRemovePpgPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRemovePpgPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRemovePpgPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/contracts/:id/remove-ppg\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.assign_ppg"],"x-require-auth":true}},"/contracts/contracts/{id}/renew":{"post":{"operationId":"contracts_post_contracts_contracts_id_renew","summary":"Renew a finished contract (ZAKONCZONA → AKTYWNA)","description":"Lifts a contract that ended cleanly (ZAKONCZONA) back to AKTYWNA with a new validTo. Records a ContractRenewal row. ROZWIAZANA contracts cannot be renewed — create a new contract instead. Emits `contracts.contract.renewed`.\n\nRequires features: contracts.manage","tags":["Contracts (CLM)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRenewPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRenewPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRenewPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRenewPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/contracts/:id/renew\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.manage"],"x-require-auth":true}},"/contracts/contracts/{id}/terminate":{"post":{"operationId":"contracts_post_contracts_contracts_id_terminate","summary":"Terminate a contract","description":"Records a ContractTermination and transitions the contract to ROZWIAZANA (unilateral) or ZAKONCZONA (mutual / expiry). Emits `contracts.contract.terminated`.\n\nRequires features: contracts.terminate","tags":["Contracts (CLM)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdTerminatePostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdTerminatePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdTerminatePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsContractsContractsIdTerminatePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/contracts/contracts/:id/terminate\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["contracts.terminate"],"x-require-auth":true}},"/billing/accounts":{"get":{"operationId":"billing_get_billing_accounts","summary":"List billing accounts","description":"Returns a paginated collection of billing accounts scoped to the authenticated organization.\n\nRequires features: billing.view","tags":["Billing"],"parameters":[{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetParameters2Schema"},"example":"AKTYWNE"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetParameters3Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetParameters4Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated billing accounts","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":"string","contractId":"00000000-0000-4000-8000-000000000000","customerId":"00000000-0000-4000-8000-000000000000","status":"string","balance":"string","currency":"string","version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/billing/accounts\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["billing.view"],"x-require-auth":true}},"/billing/invoices/correct":{"post":{"operationId":"billing_post_billing_invoices_correct","summary":"POST /billing/invoices/correct","description":"Requires features: billing.correct","tags":["Billing (Fakturowanie gazowe)"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesCorrectPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesCorrectPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesCorrectPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/billing/invoices/correct\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["billing.correct"],"x-require-auth":true}},"/billing/invoices/ksef-submit":{"post":{"operationId":"billing_post_billing_invoices_ksef_submit","summary":"POST /billing/invoices/ksef-submit","description":"Requires features: billing.ksef","tags":["Billing (Fakturowanie gazowe)"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesKsefSubmitPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesKsefSubmitPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesKsefSubmitPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/billing/invoices/ksef-submit\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["billing.ksef"],"x-require-auth":true}},"/billing/invoices":{"get":{"operationId":"billing_get_billing_invoices","summary":"List invoices","description":"Returns a paginated collection of invoices scoped to the authenticated organization.\n\nRequires features: billing.view","tags":["Billing"],"parameters":[{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"buyerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ppgId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters4Schema"},"example":"ROBOCZA"},{"name":"asOf","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters5Schema"},"example":"string"},{"name":"periodFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters6Schema"},"example":"string"},{"name":"periodTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters7Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters8Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters9Schema"},"example":1},{"name":"sort","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters10Schema"},"example":"issueDate"},{"name":"order","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters11Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetParameters12Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated invoices","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":"string","status":"string","buyerId":"00000000-0000-4000-8000-000000000000","contractId":"00000000-0000-4000-8000-000000000000","totalGross":"string","issueDate":"string","version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/billing/invoices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["billing.view"],"x-require-auth":true},"post":{"operationId":"billing_post_billing_invoices","summary":"Create invoice","description":"Issue a gas invoice.\n\nRequires features: billing.manage","tags":["Billing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchema"},"example":{"buyerId":"00000000-0000-4000-8000-000000000000","contractId":"00000000-0000-4000-8000-000000000000","issueDate":"string","periodFrom":"string","periodTo":"string","totalNet":"string","totalVat":"string","totalGross":"string","amountDue":"string","validFrom":"string","lines":[{"invoiceId":"00000000-0000-4000-8000-000000000000","service":"Gaz","qty":"string","unit":"string","unitPrice":"string","net":"string","vatRate":"string","vatAmount":"string","gross":"string","tariffScope":"SPRZEDAWCA"}]}}},"description":"Issue a gas invoice."},"responses":{"201":{"description":"Invoice created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/billing/invoices\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"buyerId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"contractId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"issueDate\\\": \\\"string\\\",\n  \\\"periodFrom\\\": \\\"string\\\",\n  \\\"periodTo\\\": \\\"string\\\",\n  \\\"totalNet\\\": \\\"string\\\",\n  \\\"totalVat\\\": \\\"string\\\",\n  \\\"totalGross\\\": \\\"string\\\",\n  \\\"amountDue\\\": \\\"string\\\",\n  \\\"validFrom\\\": \\\"string\\\",\n  \\\"lines\\\": [\n    {\n      \\\"invoiceId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n      \\\"service\\\": \\\"Gaz\\\",\n      \\\"qty\\\": \\\"string\\\",\n      \\\"unit\\\": \\\"string\\\",\n      \\\"unitPrice\\\": \\\"string\\\",\n      \\\"net\\\": \\\"string\\\",\n      \\\"vatRate\\\": \\\"string\\\",\n      \\\"vatAmount\\\": \\\"string\\\",\n      \\\"gross\\\": \\\"string\\\",\n      \\\"tariffScope\\\": \\\"SPRZEDAWCA\\\"\n    }\n  ]\n}\""}],"x-require-features":["billing.manage"],"x-require-auth":true}},"/billing/receivables":{"get":{"operationId":"billing_get_billing_receivables","summary":"List receivables","description":"Returns a paginated collection of receivables scoped to the authenticated organization.\n\nRequires features: billing.view","tags":["Billing"],"parameters":[{"name":"billingAccountId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetParameters3Schema"},"example":"OTWARTA"},{"name":"overdueOnly","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetParameters4Schema"},"example":true},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetParameters5Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetParameters6Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated receivables","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","invoiceId":"00000000-0000-4000-8000-000000000000","billingAccountId":"00000000-0000-4000-8000-000000000000","status":"string","amount":"string","paidAmount":"string","currency":"string","dueDate":"string","version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/billing/receivables\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["billing.view"],"x-require-auth":true}},"/billing/runs":{"get":{"operationId":"billing_get_billing_runs","summary":"List billing runs","description":"Returns a paginated collection of billing runs scoped to the authenticated organization.\n\nRequires features: billing.view","tags":["Billing"],"parameters":[{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsGetParameters0Schema"},"example":"ZAPLANOWANY"},{"name":"period","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsGetParameters1Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated billing runs","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":"string","status":"string","period":"string","scope":null,"totalContracts":null,"processedContracts":null,"failedContracts":null,"version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/billing/runs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["billing.view"],"x-require-auth":true},"post":{"operationId":"billing_post_billing_runs","summary":"Create billingrun","description":"Enqueue a BillingRun for the specified period. Idempotent: returns existing run if already ZAPLANOWANY/W_TOKU for the same period+scope.\n\nRequires features: billing.run","tags":["Billing"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsPostRequestBodyContentApplicationJsonSchema"},"example":{"period":"string"}}},"description":"Enqueue a BillingRun for the specified period. Idempotent: returns existing run if already ZAPLANOWANY/W_TOKU for the same period+scope."},"responses":{"201":{"description":"BillingRun created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingRunsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/billing/runs\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"period\\\": \\\"string\\\"\n}\""}],"x-require-features":["billing.run"],"x-require-auth":true}},"/billing/invoices/{id}/pdf":{"get":{"operationId":"billing_get_billing_invoices_id_pdf","summary":"Generate invoice PDF","description":"Requires features: billing.view","tags":["Billing (Fakturowanie gazowe)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesIdPdfGetParameters0Schema"}}],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesIdPdfGetResponses200ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesIdPdfGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsBillingInvoicesIdPdfGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/billing/invoices/:id/pdf\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["billing.view"],"x-require-auth":true}},"/payments/allocations":{"get":{"operationId":"payments_get_payments_allocations","summary":"List paymentallocations","description":"Returns a paginated collection of paymentallocations scoped to the authenticated organization.\n\nRequires features: payments.view","tags":["Payments"],"parameters":[{"name":"paymentId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"invoiceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"receivableId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"kind","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetParameters3Schema"},"example":"pelna"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetParameters4Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetParameters5Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated paymentallocations","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","paymentId":"00000000-0000-4000-8000-000000000000","invoiceId":"00000000-0000-4000-8000-000000000000","receivableId":"00000000-0000-4000-8000-000000000000","allocatedAmount":"string","kind":"string","allocatedAt":"string","version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/payments/allocations\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["payments.view"],"x-require-auth":true}},"/payments/payments":{"get":{"operationId":"payments_get_payments_payments","summary":"List payments","description":"Returns a paginated collection of payments scoped to the authenticated organization.\n\nRequires features: payments.view","tags":["Payments"],"parameters":[{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"ppgId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters3Schema"},"example":"NOWA"},{"name":"source","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters4Schema"},"example":"mt940"},{"name":"unmatched","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters5Schema"},"example":true},{"name":"paidAtFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters6Schema"},"example":"string"},{"name":"paidAtTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters7Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters8Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters9Schema"},"example":1},{"name":"sort","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters10Schema"},"example":"paidAt"},{"name":"order","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters11Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetParameters12Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated payments","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":"string","status":"string","source":"string","customerId":null,"contractId":null,"amount":"string","currency":"string","paidAt":"string","version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/payments/payments\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["payments.view"],"x-require-auth":true}},"/payments/statements/import":{"post":{"operationId":"payments_post_payments_statements_import","summary":"POST /payments/statements/import","description":"Requires features: payments.manage","tags":["Payments (Płatności gazowe)"],"parameters":[],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsImportPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsImportPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsImportPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/payments/statements/import\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["payments.manage"],"x-require-auth":true}},"/payments/statements":{"get":{"operationId":"payments_get_payments_statements","summary":"List bankstatements","description":"Returns a paginated collection of bankstatements scoped to the authenticated organization.\n\nRequires features: payments.view","tags":["Payments"],"parameters":[{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetParameters0Schema"},"example":"IMPORTOWANY"},{"name":"periodFrom","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetParameters1Schema"},"example":"string"},{"name":"periodTo","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetParameters2Schema"},"example":"string"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetParameters3Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetParameters4Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated bankstatements","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":"string","statementRef":"string","status":"string","importedAt":"string","currency":"string","version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/payments/statements\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["payments.view"],"x-require-auth":true}},"/payments/virtual-accounts":{"get":{"operationId":"payments_get_payments_virtual_accounts","summary":"List virtualbankaccounts","description":"Returns a paginated collection of virtualbankaccounts scoped to the authenticated organization.\n\nRequires features: payments.view","tags":["Payments"],"parameters":[{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetParameters2Schema"},"example":true},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetParameters3Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetParameters4Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated virtualbankaccounts","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","customerId":"00000000-0000-4000-8000-000000000000","contractId":null,"label":null,"isActive":true,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/payments/virtual-accounts\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["payments.view"],"x-require-auth":true},"post":{"operationId":"payments_post_payments_virtual_accounts","summary":"Create virtualbankaccount","description":"Create a virtual bank account for a customer/contract.\n\nRequires features: payments.manage","tags":["Payments"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostRequestBodyContentApplicationJsonSchema"},"example":{"customerId":"00000000-0000-4000-8000-000000000000","accountNumber":"string"}}},"description":"Create a virtual bank account for a customer/contract."},"responses":{"201":{"description":"VirtualBankAccount created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/payments/virtual-accounts\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"customerId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"accountNumber\\\": \\\"string\\\"\n}\""}],"x-require-features":["payments.manage"],"x-require-auth":true}},"/payments/payments/{id}/match":{"post":{"operationId":"payments_post_payments_payments_id_match","summary":"POST /payments/payments/{id}/match","description":"Requires features: payments.match","tags":["Payments (Płatności gazowe)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdMatchPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdMatchPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdMatchPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdMatchPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/payments/payments/:id/match\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["payments.match"],"x-require-auth":true}},"/payments/payments/{id}/unmatch":{"post":{"operationId":"payments_post_payments_payments_id_unmatch","summary":"POST /payments/payments/{id}/unmatch","description":"Requires features: payments.match","tags":["Payments (Płatności gazowe)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdUnmatchPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdUnmatchPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdUnmatchPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdUnmatchPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/payments/payments/:id/unmatch\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["payments.match"],"x-require-auth":true}},"/switching/cases":{"get":{"operationId":"switching_get_switching_cases","summary":"List switching cases","description":"Returns a paginated collection of switching cases scoped to the authenticated organization.\n\nRequires features: switching.view","tags":["Switching"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetParameters1Schema"},"example":1},{"name":"ppgId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetParameters5Schema"},"example":"SWITCHING_ROBOCZY"},{"name":"packageId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetParameters6Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetParameters7Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetParameters8Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetParameters9Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated switching cases","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":"string","ppgId":"00000000-0000-4000-8000-000000000000","contractId":"00000000-0000-4000-8000-000000000000","customerId":"00000000-0000-4000-8000-000000000000","packageId":null,"status":"string","plannedChangeDate":"string","effectiveChangeDate":null,"version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/switching/cases?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["switching.view"],"x-require-auth":true},"post":{"operationId":"switching_post_switching_cases","summary":"Create switching case","description":"Create a draft switching case (SWITCHING_ROBOCZY).\n\nRequires features: switching.manage","tags":["Switching"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchema"},"example":{"ppgId":"00000000-0000-4000-8000-000000000000","contractId":"00000000-0000-4000-8000-000000000000","customerId":"00000000-0000-4000-8000-000000000000","packageId":null,"poaId":"00000000-0000-4000-8000-000000000000","previousSupplierId":"00000000-0000-4000-8000-000000000000","osdId":"00000000-0000-4000-8000-000000000000","plannedChangeDate":"string","validFrom":"string","validTo":null,"sourceSystem":null,"owner":null,"status":"SWITCHING_ROBOCZY"}}},"description":"Create a draft switching case (SWITCHING_ROBOCZY)."},"responses":{"201":{"description":"Switching Case created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/switching/cases\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"ppgId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"contractId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"customerId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"packageId\\\": null,\n  \\\"poaId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"previousSupplierId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"osdId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"plannedChangeDate\\\": \\\"string\\\",\n  \\\"validFrom\\\": \\\"string\\\",\n  \\\"validTo\\\": null,\n  \\\"sourceSystem\\\": null,\n  \\\"owner\\\": null,\n  \\\"status\\\": \\\"SWITCHING_ROBOCZY\\\"\n}\""}],"x-require-features":["switching.manage"],"x-require-auth":true},"put":{"operationId":"switching_put_switching_cases","summary":"Update switching case","description":"Updates an existing switching case by id.\n\nRequires features: switching.manage","tags":["Switching"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchema"},"example":{"packageId":null,"validTo":null,"sourceSystem":null,"owner":null,"status":"SWITCHING_ROBOCZY","id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the switching case."},"responses":{"200":{"description":"Switching Case updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/switching/cases\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"packageId\\\": null,\n  \\\"validTo\\\": null,\n  \\\"sourceSystem\\\": null,\n  \\\"owner\\\": null,\n  \\\"status\\\": \\\"SWITCHING_ROBOCZY\\\",\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-features":["switching.manage"],"x-require-auth":true},"delete":{"operationId":"switching_delete_switching_cases","summary":"Delete switching case","description":"Deletes a switching case identified by id.\n\nRequires features: switching.manage","tags":["Switching"],"parameters":[],"responses":{"200":{"description":"Switching Case deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/switching/cases\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["switching.manage"],"x-require-auth":true}},"/switching/packages":{"get":{"operationId":"switching_get_switching_packages","summary":"List switching packages","description":"Returns a paginated collection of switching packages scoped to the authenticated organization.\n\nRequires features: switching.view","tags":["Switching"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetParameters1Schema"},"example":1},{"name":"contractId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetParameters3Schema"},"example":"PAKIET_ROBOCZY"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated switching packages","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":"string","contractId":"00000000-0000-4000-8000-000000000000","status":"string","totalPpgCount":1,"acceptedPpgCount":1,"rejectedPpgCount":1,"version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/switching/packages?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["switching.view"],"x-require-auth":true},"post":{"operationId":"switching_post_switching_packages","summary":"Create switching package","description":"Create a switching package (4J multi-PPG batch).\n\nRequires features: switching.manage","tags":["Switching"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchema"},"example":{"contractId":"00000000-0000-4000-8000-000000000000","customerId":"00000000-0000-4000-8000-000000000000","osdId":"00000000-0000-4000-8000-000000000000","poaId":"00000000-0000-4000-8000-000000000000","validFrom":"string","validTo":null,"sourceSystem":null,"owner":null,"status":"PAKIET_ROBOCZY"}}},"description":"Create a switching package (4J multi-PPG batch)."},"responses":{"201":{"description":"Switching Package created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/switching/packages\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"contractId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"customerId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"osdId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"poaId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"validFrom\\\": \\\"string\\\",\n  \\\"validTo\\\": null,\n  \\\"sourceSystem\\\": null,\n  \\\"owner\\\": null,\n  \\\"status\\\": \\\"PAKIET_ROBOCZY\\\"\n}\""}],"x-require-features":["switching.manage"],"x-require-auth":true},"put":{"operationId":"switching_put_switching_packages","summary":"Update switching package","description":"Updates an existing switching package by id.\n\nRequires features: switching.manage","tags":["Switching"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchema"},"example":{"validTo":null,"sourceSystem":null,"owner":null,"status":"PAKIET_ROBOCZY","id":"00000000-0000-4000-8000-000000000000"}}},"description":"Fields to update on the switching package."},"responses":{"200":{"description":"Switching Package updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/switching/packages\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"validTo\\\": null,\n  \\\"sourceSystem\\\": null,\n  \\\"owner\\\": null,\n  \\\"status\\\": \\\"PAKIET_ROBOCZY\\\",\n  \\\"id\\\": \\\"00000000-0000-4000-8000-000000000000\\\"\n}\""}],"x-require-features":["switching.manage"],"x-require-auth":true},"delete":{"operationId":"switching_delete_switching_packages","summary":"Delete switching package","description":"Deletes a switching package identified by id.\n\nRequires features: switching.manage","tags":["Switching"],"parameters":[],"responses":{"200":{"description":"Switching Package deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/switching/packages\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["switching.manage"],"x-require-auth":true}},"/switching/requests":{"get":{"operationId":"switching_get_switching_requests","summary":"List switching requests","description":"Returns a paginated collection of switching requests scoped to the authenticated organization.\n\nRequires features: switching.view","tags":["Switching"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetParameters1Schema"},"example":1},{"name":"switchingCaseId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"packageId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetParameters4Schema"},"example":"PRZYGOTOWANY"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetParameters5Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetParameters6Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated switching requests","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","switchingCaseId":"00000000-0000-4000-8000-000000000000","packageId":null,"ppgId":"00000000-0000-4000-8000-000000000000","osdId":"00000000-0000-4000-8000-000000000000","status":"string","osdReferenceNumber":null,"sentAt":null,"confirmedAt":null,"version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/switching/requests?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["switching.view"],"x-require-auth":true}},"/switching/sla-trackers":{"get":{"operationId":"switching_get_switching_sla_trackers","summary":"List sla trackers","description":"Returns a paginated collection of sla trackers scoped to the authenticated organization.\n\nRequires features: switching.view","tags":["Switching"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetParameters1Schema"},"example":1},{"name":"switchingCaseId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"threatLevel","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetParameters3Schema"},"example":"OK"},{"name":"sortField","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetParameters4Schema"},"example":"string"},{"name":"sortDir","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetParameters5Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated sla trackers","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","switchingCaseId":"00000000-0000-4000-8000-000000000000","stage":"string","deadlineAt":"string","warningAt":"string","threatLevel":"string","breachedAt":null,"escalatedAt":null,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/switching/sla-trackers?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["switching.view"],"x-require-auth":true}},"/switching/cases/{id}/cancel":{"post":{"operationId":"switching_post_switching_cases_id_cancel","summary":"Cancel switching case (4M rezygnacja / saga compensation)","description":"Initiates saga compensation by transitioning to REZYGNACJA (if already sent to OSD) or ANULOWANY. Emits switching.case.cancelled; the saga handles OSD cancellation notification.\n\nRequires features: switching.cancel","tags":["Switching (zmiana sprzedawcy gazu)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdCancelPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdCancelPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdCancelPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdCancelPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/switching/cases/:id/cancel\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["switching.cancel"],"x-require-auth":true}},"/switching/cases/{id}/resume":{"post":{"operationId":"switching_post_switching_cases_id_resume","summary":"Resume / re-activate switching case (4N ponowienie)","description":"Resets a rejected or cancelled case to SWITCHING_ROBOCZY with a new planned change date. The caller must then re-submit with a new PoA check.\n\nRequires features: switching.resume","tags":["Switching (zmiana sprzedawcy gazu)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdResumePostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdResumePostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdResumePostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdResumePostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/switching/cases/:id/resume\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["switching.resume"],"x-require-auth":true}},"/switching/cases/{id}/submit":{"post":{"operationId":"switching_post_switching_cases_id_submit","summary":"Submit switching case to OSD (fail-closed PoA check)","description":"Validates an active Power-of-Attorney (scope=switching) before sending. If no valid PoA → 422, no request sent (REQ-007, AC-002). Creates SwitchingRequest, advances to ZGŁOSZENIE_PRZYGOTOWANE, emits switching.case.submitted. The switchingWorkflow saga (om-temporal-saga) picks up from the event.\n\nRequires features: switching.submit","tags":["Switching (zmiana sprzedawcy gazu)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdSubmitPostParameters0Schema"}}],"responses":{"201":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdSubmitPostResponses201ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdSubmitPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdSubmitPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/switching/cases/:id/submit\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["switching.submit"],"x-require-auth":true}},"/connector_bank/batches":{"get":{"operationId":"connector_bank_get_connector_bank_batches","summary":"List bank import batches","description":"Returns a paginated collection of bank import batches scoped to the authenticated organization.\n\nRequires features: connector_bank.batch.view","tags":["Connector Bank"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetParameters1Schema"},"example":1},{"name":"connectionId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetParameters3Schema"},"example":"PENDING"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated bank import batches","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":null,"status":"string","connectionId":"00000000-0000-4000-8000-000000000000","pullStartedAt":null,"completedAt":null,"totalFiles":1,"parsedOk":1,"parseErrors":1,"statementsDispatched":1,"errorDetail":null,"version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/connector_bank/batches?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_bank.batch.view"],"x-require-auth":true}},"/connector_bank/connections":{"get":{"operationId":"connector_bank_get_connector_bank_connections","summary":"List bank connections","description":"Returns a paginated collection of bank connections scoped to the authenticated organization.\n\nRequires features: connector_bank.connection.view","tags":["Connector Bank"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetParameters4Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated bank connections","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","host":"string","port":1,"dirIn":"string","dirArchive":"string","pullScheduleCron":null,"isActive":true,"status":"string","version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/connector_bank/connections?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_bank.connection.view"],"x-require-auth":true},"post":{"operationId":"connector_bank_post_connector_bank_connections","summary":"Create bank connection","description":"Create a bank SFTP/H2H connection configuration\n\nRequires features: connector_bank.connection.manage","tags":["Connector Bank"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","name":"string","host":"string","port":22,"dirIn":"in/","dirArchive":"archive/","isActive":true}}},"description":"Create a bank SFTP/H2H connection configuration"},"responses":{"201":{"description":"Bank Connection created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/connector_bank/connections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"host\\\": \\\"string\\\",\n  \\\"port\\\": 22,\n  \\\"dirIn\\\": \\\"in/\\\",\n  \\\"dirArchive\\\": \\\"archive/\\\",\n  \\\"isActive\\\": true\n}\""}],"x-require-features":["connector_bank.connection.manage"],"x-require-auth":true},"put":{"operationId":"connector_bank_put_connector_bank_connections","summary":"Update bank connection","description":"Updates an existing bank connection by id.\n\nRequires features: connector_bank.connection.manage","tags":["Connector Bank"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchema"},"example":{"port":22,"dirIn":"in/","dirArchive":"archive/","isActive":true}}},"description":"Fields to update on the bank connection."},"responses":{"200":{"description":"Bank Connection updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/connector_bank/connections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"port\\\": 22,\n  \\\"dirIn\\\": \\\"in/\\\",\n  \\\"dirArchive\\\": \\\"archive/\\\",\n  \\\"isActive\\\": true\n}\""}],"x-require-features":["connector_bank.connection.manage"],"x-require-auth":true},"delete":{"operationId":"connector_bank_delete_connector_bank_connections","summary":"Delete bank connection","description":"Deletes a bank connection identified by id.\n\nRequires features: connector_bank.connection.manage","tags":["Connector Bank"],"parameters":[],"responses":{"200":{"description":"Bank Connection deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/connector_bank/connections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_bank.connection.manage"],"x-require-auth":true}},"/connector_bank/files":{"get":{"operationId":"connector_bank_get_connector_bank_files","summary":"List bank file logs","description":"Returns a paginated collection of bank file logs scoped to the authenticated organization.\n\nRequires features: connector_bank.file.view","tags":["Connector Bank"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetParameters1Schema"},"example":1},{"name":"connectionId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"batchId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetParameters4Schema"},"example":"POBRANY"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetParameters5Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetParameters6Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated bank file logs","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","businessKey":"string","status":"string","connectionId":"00000000-0000-4000-8000-000000000000","batchId":null,"filename":"string","contentHash":"string","statementRef":null,"linesCount":null,"archivePath":null,"sizeBytes":null,"errorDetail":null,"sourceSystem":null,"sourceTimestamp":null,"version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/connector_bank/files?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_bank.file.view"],"x-require-auth":true}},"/connector_bank/connections/{id}/pull":{"post":{"operationId":"connector_bank_post_connector_bank_connections_id_pull","summary":"Trigger a manual MT940 SFTP pull","description":"Enqueues an immediate SFTP pull of MT940 files outside the scheduled cron window. The pull is idempotent (dedup via BankFileLog + payments UNIQUE constraint). Returns 202 immediately; the actual transfer runs in the background.\n\nRequires features: connector_bank.pull.trigger","tags":["Connector Bank"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostParameters0Schema"}}],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostRequestBodyContentApplicationJsonSchema"},"example":{"dryRun":false}}}},"responses":{"202":{"description":"Pull accepted and queued","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostResponses202ContentApplicationJsonSchema"},"example":{"message":"string","connectionId":"string","dryRun":true}}}},"400":{"description":"Invalid payload or missing connection id","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostResponses400ContentApplicationJsonSchema"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Bank connection not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/connector_bank/connections/:id/pull\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"dryRun\\\": false\n}\""}],"x-require-features":["connector_bank.pull.trigger"],"x-require-auth":true}},"/connector_accounting/connections":{"get":{"operationId":"connector_accounting_get_connector_accounting_connections","summary":"List accounting connections","description":"Returns a paginated collection of accounting connections scoped to the authenticated organization. NOTE: transport is MOCKUP — no real accounting system is connected.\n\nRequires features: connector_accounting.connection.view","tags":["Connector Accounting (MOCKUP)"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetParameters1Schema"},"example":1},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetParameters2Schema"},"example":"string"},{"name":"id","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetParameters4Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetParameters5Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated accounting connections","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","systemType":"string","baseUrl":null,"exportScheduleCron":null,"isActive":true,"version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/connector_accounting/connections?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_accounting.connection.view"],"x-require-auth":true},"post":{"operationId":"connector_accounting_post_connector_accounting_connections","summary":"Create accounting connection (mockup)","description":"Create an accounting system connection configuration (MOCKUP — transport not connected)\n\nRequires features: connector_accounting.connection.manage","tags":["Connector Accounting (MOCKUP)"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchema"},"example":{"code":"string","name":"string","systemType":"CUSTOM","isActive":true}}},"description":"Create an accounting system connection configuration (MOCKUP — transport not connected)"},"responses":{"201":{"description":"Accounting Connection (MOCKUP) created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/connector_accounting/connections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"code\\\": \\\"string\\\",\n  \\\"name\\\": \\\"string\\\",\n  \\\"systemType\\\": \\\"CUSTOM\\\",\n  \\\"isActive\\\": true\n}\""}],"x-require-features":["connector_accounting.connection.manage"],"x-require-auth":true},"put":{"operationId":"connector_accounting_put_connector_accounting_connections","summary":"Update accounting connection (mockup)","description":"Updates an existing accounting connection (mockup) by id.\n\nRequires features: connector_accounting.connection.manage","tags":["Connector Accounting (MOCKUP)"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchema"},"example":{"systemType":"CUSTOM","isActive":true}}},"description":"Fields to update on the accounting connection (mockup)."},"responses":{"200":{"description":"Accounting Connection (MOCKUP) updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/connector_accounting/connections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"systemType\\\": \\\"CUSTOM\\\",\n  \\\"isActive\\\": true\n}\""}],"x-require-features":["connector_accounting.connection.manage"],"x-require-auth":true},"delete":{"operationId":"connector_accounting_delete_connector_accounting_connections","summary":"Delete accounting connection (mockup)","description":"Deletes a accounting connection (mockup) identified by id.\n\nRequires features: connector_accounting.connection.manage","tags":["Connector Accounting (MOCKUP)"],"parameters":[],"responses":{"200":{"description":"Accounting Connection (MOCKUP) deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/connector_accounting/connections\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_accounting.connection.manage"],"x-require-auth":true}},"/connector_accounting/export-batches":{"get":{"operationId":"connector_accounting_get_connector_accounting_export_batches","summary":"List accounting export batches","description":"Returns a paginated collection of accounting export batches scoped to the authenticated organization. NOTE: transport is MOCKUP — no real accounting system is connected.\n\nRequires features: connector_accounting.export_batch.view","tags":["Connector Accounting (MOCKUP)"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetParameters1Schema"},"example":1},{"name":"connectionId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetParameters3Schema"},"example":"PENDING"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated accounting export batches","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","connectionId":"00000000-0000-4000-8000-000000000000","businessKey":null,"status":"string","exportStartedAt":null,"completedAt":null,"totalPostings":1,"sentOk":1,"sendErrors":1,"skipped":1,"errorDetail":null,"version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/connector_accounting/export-batches?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_accounting.export_batch.view"],"x-require-auth":true}},"/connector_accounting/posting-logs":{"get":{"operationId":"connector_accounting_get_connector_accounting_posting_logs","summary":"List accounting posting logs","description":"Returns a paginated collection of accounting posting logs scoped to the authenticated organization. NOTE: transport is MOCKUP — no real accounting system is connected.\n\nRequires features: connector_accounting.posting_log.view","tags":["Connector Accounting (MOCKUP)"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetParameters1Schema"},"example":1},{"name":"connectionId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"batchId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetParameters3Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"invoiceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetParameters4Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetParameters5Schema"},"example":"MOCKED"},{"name":"accountingPeriod","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetParameters6Schema"},"example":"string"},{"name":"search","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetParameters7Schema"},"example":"string"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetParameters8Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated accounting posting logs","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","connectionId":"00000000-0000-4000-8000-000000000000","invoiceId":"00000000-0000-4000-8000-000000000000","invoiceNumber":null,"accountingPeriod":"string","status":"string","batchId":null,"externalRef":null,"sentAt":null,"errorDetail":null,"retryCount":1,"idempotencyKey":"string","version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/connector_accounting/posting-logs?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_accounting.posting_log.view"],"x-require-auth":true}},"/connector_accounting/connections/{id}":{"get":{"operationId":"connector_accounting_get_connector_accounting_connections_id","summary":"Get an accounting connection by id","description":"Returns a single accounting connection by id, scoped to the authenticated organization. NOTE: transport is MOCKUP — no real accounting system is connected. Create/update/delete are exposed on the collection route /api/connector_accounting/connections.\n\nRequires features: connector_accounting.connection.view","tags":["Connector Accounting (MOCKUP)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetParameters0Schema"}}],"responses":{"200":{"description":"The accounting connection","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","code":"string","name":"string","systemType":"string","baseUrl":null,"exportScheduleCron":null,"isActive":true,"version":1,"createdAt":"string","updatedAt":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Accounting connection not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/connector_accounting/connections/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_accounting.connection.view"],"x-require-auth":true}},"/connector_accounting/export-batches/{id}":{"get":{"operationId":"connector_accounting_get_connector_accounting_export_batches_id","summary":"Get an accounting export batch by id","description":"Returns a single accounting export batch by id, scoped to the authenticated organization. NOTE: transport is MOCKUP — no real accounting system is connected.\n\nRequires features: connector_accounting.export_batch.view","tags":["Connector Accounting (MOCKUP)"],"parameters":[{"name":"id","in":"path","required":true,"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetParameters0Schema"}}],"responses":{"200":{"description":"The accounting export batch","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchema"},"example":{"id":"00000000-0000-4000-8000-000000000000","connectionId":"00000000-0000-4000-8000-000000000000","businessKey":null,"status":"string","exportStartedAt":null,"completedAt":null,"totalPostings":1,"sentOk":1,"sendErrors":1,"skipped":1,"errorDetail":null,"version":1,"createdAt":"string","updatedAt":"string"}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"404":{"description":"Accounting export batch not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses404ContentApplicationJsonSchema"}}}}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/connector_accounting/export-batches/:id\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["connector_accounting.export_batch.view"],"x-require-auth":true}},"/dunning/cases":{"get":{"operationId":"dunning_get_dunning_cases","summary":"List dunning cases","description":"Returns a paginated collection of dunning cases scoped to the authenticated organization.\n\nRequires features: dunning.view","tags":["Dunning"],"parameters":[{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesGetParameters0Schema"},"example":"OTWARTA"},{"name":"customerId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesGetParameters1Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"invoiceId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesGetParameters2Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesGetParameters3Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesGetParameters4Schema"},"example":1},{"name":"sort","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesGetParameters5Schema"},"example":"createdAt"},{"name":"order","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesGetParameters6Schema"},"example":"asc"},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesGetParameters7Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated dunning cases","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","receivableId":"00000000-0000-4000-8000-000000000000","invoiceId":"00000000-0000-4000-8000-000000000000","billingAccountId":"00000000-0000-4000-8000-000000000000","customerId":"00000000-0000-4000-8000-000000000000","status":"string","amount":"string","paidAmount":"string","currency":"string","dueDate":"string","detectedAt":"string","version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/dunning/cases?page=1&pageSize=20&sort=createdAt&order=desc\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dunning.view"],"x-require-auth":true},"post":{"operationId":"dunning_post_dunning_cases","summary":"Create dunningcase","description":"Open a new dunning case for an overdue receivable.\n\nRequires features: dunning.manage","tags":["Dunning"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchema"},"example":{"receivableId":"00000000-0000-4000-8000-000000000000","invoiceId":"00000000-0000-4000-8000-000000000000","billingAccountId":"00000000-0000-4000-8000-000000000000","customerId":"00000000-0000-4000-8000-000000000000","amount":"string","paidAmount":"0","currency":"PLN","dueDate":"string","detectedAt":"string","policyId":null,"notes":null}}},"description":"Open a new dunning case for an overdue receivable."},"responses":{"201":{"description":"DunningCase created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/dunning/cases\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"receivableId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"invoiceId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"billingAccountId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"customerId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"amount\\\": \\\"string\\\",\n  \\\"paidAmount\\\": \\\"0\\\",\n  \\\"currency\\\": \\\"PLN\\\",\n  \\\"dueDate\\\": \\\"string\\\",\n  \\\"detectedAt\\\": \\\"string\\\",\n  \\\"policyId\\\": null,\n  \\\"notes\\\": null\n}\""}],"x-require-features":["dunning.manage"],"x-require-auth":true},"put":{"operationId":"dunning_put_dunning_cases","summary":"Update dunningcase","description":"Updates an existing dunningcase by id.\n\nRequires features: dunning.manage","tags":["Dunning"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchema"},"example":{"policyId":null,"currentLevelId":null,"workflowTaskId":null,"notes":null,"closedReason":null}}},"description":"Fields to update on the dunningcase."},"responses":{"200":{"description":"DunningCase updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/dunning/cases\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"policyId\\\": null,\n  \\\"currentLevelId\\\": null,\n  \\\"workflowTaskId\\\": null,\n  \\\"notes\\\": null,\n  \\\"closedReason\\\": null\n}\""}],"x-require-features":["dunning.manage"],"x-require-auth":true},"delete":{"operationId":"dunning_delete_dunning_cases","summary":"Delete dunningcase","description":"Deletes a dunningcase identified by id.\n\nRequires features: dunning.manage","tags":["Dunning"],"parameters":[],"responses":{"200":{"description":"DunningCase deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningCasesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/dunning/cases\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dunning.manage"],"x-require-auth":true}},"/dunning/letters":{"get":{"operationId":"dunning_get_dunning_letters","summary":"List dunning letters","description":"Returns a paginated collection of dunning letters scoped to the authenticated organization.\n\nRequires features: dunning.view","tags":["Dunning"],"parameters":[{"name":"caseId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"status","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersGetParameters1Schema"},"example":"ROBOCZE"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersGetParameters2Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersGetParameters3Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersGetParameters4Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated dunning letters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","caseId":"00000000-0000-4000-8000-000000000000","stepId":null,"status":"string","channel":null,"amount":"string","currency":"string","sentAt":null,"version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/dunning/letters?page=1&pageSize=20\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dunning.view"],"x-require-auth":true},"post":{"operationId":"dunning_post_dunning_letters","summary":"Create dunningletter","description":"Generate a dunning letter for a case. PII fields encrypted at rest.\n\nRequires features: dunning.manage","tags":["Dunning"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchema"},"example":{"caseId":"00000000-0000-4000-8000-000000000000","stepId":null,"templateId":null,"channel":null,"recipientName":null,"recipientAddress":null,"contactEmail":null,"contactPhone":null,"amount":"string","currency":"PLN"}}},"description":"Generate a dunning letter for a case. PII fields encrypted at rest."},"responses":{"201":{"description":"DunningLetter created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/dunning/letters\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"caseId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"stepId\\\": null,\n  \\\"templateId\\\": null,\n  \\\"channel\\\": null,\n  \\\"recipientName\\\": null,\n  \\\"recipientAddress\\\": null,\n  \\\"contactEmail\\\": null,\n  \\\"contactPhone\\\": null,\n  \\\"amount\\\": \\\"string\\\",\n  \\\"currency\\\": \\\"PLN\\\"\n}\""}],"x-require-features":["dunning.manage"],"x-require-auth":true},"put":{"operationId":"dunning_put_dunning_letters","summary":"Update dunningletter","description":"Updates an existing dunningletter by id.\n\nRequires features: dunning.manage","tags":["Dunning"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchema"},"example":{"pdfStorageKey":null,"sentAt":null,"confirmedAt":null,"errorDetail":null}}},"description":"Fields to update on the dunningletter."},"responses":{"200":{"description":"DunningLetter updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/dunning/letters\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"pdfStorageKey\\\": null,\n  \\\"sentAt\\\": null,\n  \\\"confirmedAt\\\": null,\n  \\\"errorDetail\\\": null\n}\""}],"x-require-features":["dunning.manage"],"x-require-auth":true},"delete":{"operationId":"dunning_delete_dunning_letters","summary":"Delete dunningletter","description":"Deletes a dunningletter identified by id.\n\nRequires features: dunning.manage","tags":["Dunning"],"parameters":[],"responses":{"200":{"description":"DunningLetter deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLettersDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/dunning/letters\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dunning.manage"],"x-require-auth":true}},"/dunning/levels":{"get":{"operationId":"dunning_get_dunning_levels","summary":"List dunning levels","description":"Returns a paginated collection of dunning levels scoped to the authenticated organization.\n\nRequires features: dunning.view","tags":["Dunning"],"parameters":[{"name":"policyId","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetParameters0Schema"},"example":"00000000-0000-4000-8000-000000000000"},{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetParameters1Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetParameters2Schema"},"example":1},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetParameters3Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated dunning levels","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","policyId":"00000000-0000-4000-8000-000000000000","levelNumber":1,"label":"string","triggerDays":1,"autoEscalate":true,"version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/dunning/levels?page=1&pageSize=50\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dunning.view"],"x-require-auth":true},"post":{"operationId":"dunning_post_dunning_levels","summary":"Create dunninglevel","description":"Add an escalation level to a dunning policy.\n\nRequires features: dunning.policy_manage","tags":["Dunning"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchema"},"example":{"policyId":"00000000-0000-4000-8000-000000000000","levelNumber":1,"label":"string","description":null,"triggerDays":1,"autoEscalate":false}}},"description":"Add an escalation level to a dunning policy."},"responses":{"201":{"description":"DunningLevel created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/dunning/levels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"policyId\\\": \\\"00000000-0000-4000-8000-000000000000\\\",\n  \\\"levelNumber\\\": 1,\n  \\\"label\\\": \\\"string\\\",\n  \\\"description\\\": null,\n  \\\"triggerDays\\\": 1,\n  \\\"autoEscalate\\\": false\n}\""}],"x-require-features":["dunning.policy_manage"],"x-require-auth":true},"put":{"operationId":"dunning_put_dunning_levels","summary":"Update dunninglevel","description":"Updates an existing dunninglevel by id.\n\nRequires features: dunning.policy_manage","tags":["Dunning"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchema"},"example":{"description":null}}},"description":"Fields to update on the dunninglevel."},"responses":{"200":{"description":"DunningLevel updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/dunning/levels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"description\\\": null\n}\""}],"x-require-features":["dunning.policy_manage"],"x-require-auth":true},"delete":{"operationId":"dunning_delete_dunning_levels","summary":"Delete dunninglevel","description":"Deletes a dunninglevel identified by id.\n\nRequires features: dunning.policy_manage","tags":["Dunning"],"parameters":[],"responses":{"200":{"description":"DunningLevel deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningLevelsDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/dunning/levels\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dunning.policy_manage"],"x-require-auth":true}},"/dunning/policies":{"get":{"operationId":"dunning_get_dunning_policies","summary":"List dunning policies","description":"Returns a paginated collection of dunning policies scoped to the authenticated organization.\n\nRequires features: dunning.view","tags":["Dunning"],"parameters":[{"name":"page","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetParameters0Schema"},"example":1},{"name":"pageSize","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetParameters1Schema"},"example":1},{"name":"isActive","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetParameters2Schema"},"example":true},{"name":"ids","in":"query","required":false,"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetParameters3Schema"},"example":"string","description":"Comma-separated list of record UUIDs to filter by (max 200)."}],"responses":{"200":{"description":"Paginated dunning policies","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchema"},"example":{"items":[{"id":"00000000-0000-4000-8000-000000000000","name":"string","description":null,"segment":null,"isActive":true,"maxDaysOverdue":null,"version":1,"createdAt":"string","updatedAt":"string"}],"total":1,"totalPages":1}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X GET \"https://151.115.63.33.sslip.io/api/dunning/policies?page=1&pageSize=20\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dunning.view"],"x-require-auth":true},"post":{"operationId":"dunning_post_dunning_policies","summary":"Create dunningpolicy","description":"Create a dunning escalation policy.\n\nRequires features: dunning.policy_manage","tags":["Dunning"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchema"},"example":{"name":"string","description":null,"segment":null,"isActive":true,"maxDaysOverdue":null}}},"description":"Create a dunning escalation policy."},"responses":{"201":{"description":"DunningPolicy created","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostResponses201ContentApplicationJsonSchema"},"example":{"id":null}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X POST \"https://151.115.63.33.sslip.io/api/dunning/policies\" \\\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  \\\"segment\\\": null,\n  \\\"isActive\\\": true,\n  \\\"maxDaysOverdue\\\": null\n}\""}],"x-require-features":["dunning.policy_manage"],"x-require-auth":true},"put":{"operationId":"dunning_put_dunning_policies","summary":"Update dunningpolicy","description":"Updates an existing dunningpolicy by id.\n\nRequires features: dunning.policy_manage","tags":["Dunning"],"parameters":[],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchema"},"example":{"description":null,"segment":null,"maxDaysOverdue":null}}},"description":"Fields to update on the dunningpolicy."},"responses":{"200":{"description":"DunningPolicy updated","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X PUT \"https://151.115.63.33.sslip.io/api/dunning/policies\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d \"{\n  \\\"description\\\": null,\n  \\\"segment\\\": null,\n  \\\"maxDaysOverdue\\\": null\n}\""}],"x-require-features":["dunning.policy_manage"],"x-require-auth":true},"delete":{"operationId":"dunning_delete_dunning_policies","summary":"Delete dunningpolicy","description":"Deletes a dunningpolicy identified by id.\n\nRequires features: dunning.policy_manage","tags":["Dunning"],"parameters":[],"responses":{"200":{"description":"DunningPolicy deleted","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesDeleteResponses200ContentApplicationJsonSchema"},"example":{"ok":true}}}},"401":{"description":"Unauthorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesDeleteResponses401ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true},"403":{"description":"Forbidden – missing required features","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DocPathsDunningPoliciesDeleteResponses403ContentApplicationJsonSchema"},"example":{"error":"string"}}},"x-autoGenerated":true}},"security":[{"bearerAuth":[]}],"x-codeSamples":[{"lang":"curl","label":"cURL","source":"curl -X DELETE \"https://151.115.63.33.sslip.io/api/dunning/policies\" \\\n  -H \"Accept: application/json\" \\\n  -H \"authorization: Bearer <token>\""}],"x-require-features":["dunning.policy_manage"],"x-require-auth":true}}},"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT","description":"Send an `Authorization: Bearer <token>` header with a valid API token."}},"schemas":{"DocPathsAuthLocaleGetParameters0Schema":{"type":"string","enum":["en","pl","es","de"]},"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"}]},"DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationId"},"organizationName":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesOrganizationName"},"tenantId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesTenantId"},"logoUrl":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingGetResponses200ContentApplicationJsonSchemaPropertiesLogoUrl"}},"required":["organizationId","organizationName","tenantId","logoUrl"],"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"}]},"DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"organizationId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesOrganizationId"},"organizationName":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesOrganizationName"},"tenantId":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesTenantId"},"logoUrl":{"$ref":"#/components/schemas/DocPathsDirectoryOrganizationBrandingPutResponses200ContentApplicationJsonSchemaPropertiesLogoUrl"}},"required":["organizationId","organizationName","tenantId","logoUrl"],"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},"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},"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]},"DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsBatchPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"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},"DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"deletedKeys":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesDeletedKeys"},"fieldsets":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesFieldsets"},"settings":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsManageGetResponses200ContentApplicationJsonSchemaPropertiesSettings"}},"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]},"DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesDefinitionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"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"},"DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"entityId":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesEntityId"},"fields":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesFields"},"isActive":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionGetResponses200ContentApplicationJsonSchemaPropertiesIsActive"}},"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"},"DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEntitiesEncryptionPostResponses200ContentApplicationJsonSchemaPropertiesOk"}},"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},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEntityId":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"type":"string","enum":["code","custom"]},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelField":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDefaultEditor":{"type":"string"},"DocPathsEntitiesEntitiesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesShowInSidebar":{"type":"boolean"},"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"},"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":"boolean"},"DocPathsEntitiesRecordsGetParameters6Schema":{"type":"string","enum":["csv","json","xml","markdown"]},"DocPathsEntitiesRecordsGetParameters7Schema":{"type":"string","enum":["full"]},"DocPathsEntitiesRecordsGetParameters8Schema":{"type":"string","enum":["full"]},"DocPathsEntitiesRecordsGetParameters9Schema":{"type":"boolean"},"DocPathsEntitiesRecordsGetParameters10Schema":{"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},"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},"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},"DocPathsEventsStreamGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsEventsStreamGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEventsStreamGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEventsStreamGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCustomersGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsCustomersCustomersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCustomersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCustomersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCustomersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCustomersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCustomersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCustomersPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsCustomersCustomersPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCustomersPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCustomersPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCustomersPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCustomersPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCustomersPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCustomersPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsCustomersCustomersPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCustomersPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCustomersPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCustomersPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCustomersPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCustomersPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCustomersDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCustomersDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCustomersDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsCustomersCustomersDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsCustomersCustomersDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsCustomersCustomersDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsGetParameters0Schema":{"type":"number"},"DocPathsEnergyMasterDataHubsGetParameters1Schema":{"type":"number"},"DocPathsEnergyMasterDataHubsGetParameters2Schema":{"type":"string"},"DocPathsEnergyMasterDataHubsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataHubsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataHubsGetParameters5Schema":{"type":"string","enum":["DRAFT","ACTIVE","CLOSED"]},"DocPathsEnergyMasterDataHubsGetParameters6Schema":{"type":"string"},"DocPathsEnergyMasterDataHubsGetParameters7Schema":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataHubsGetParameters8Schema":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf0":{"type":"null"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf1":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1AnyOf1"}]},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf0":{"type":"null"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf1":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2AnyOf1"}]},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCityAnyOf1"}]},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCodeAnyOf1"}]},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountry":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountryAnyOf1"}]},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTerytCodeAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTerytCodeAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTerytCode":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTerytCodeAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTerytCodeAnyOf1"}]},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"customerId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId"},"name":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"addressLine1":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAddressLine2"},"city":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCity"},"postalCode":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCountry"},"terytCode":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTerytCode"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"createdAt":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","customerId","name","status","createdAt","updatedAt"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataHubsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"type":"string","maxLength":255},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2":{"type":"string","maxLength":255},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesCity":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"type":"string","maxLength":20},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"type":"string"},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesGeoLat":{"type":"number"},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesGeoLng":{"type":"number"},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesTerytCode":{"type":"string","pattern":"^\\d{7}$"},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["DRAFT","ACTIVE","CLOSED"]},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string","maxLength":60},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"customerId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"name":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"addressLine1":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2"},"city":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesCity"},"postalCode":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesCountry"},"geoLat":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesGeoLat"},"geoLng":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesGeoLng"},"terytCode":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesTerytCode"},"businessKey":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"}},"required":["customerId","name"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataHubsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataHubsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsEnergyMasterDataHubsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataHubsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataHubsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1":{"type":"string","maxLength":255},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2":{"type":"string","maxLength":255},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesCity":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode":{"type":"string","maxLength":20},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesCountry":{"type":"string"},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesGeoLat":{"type":"number"},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesGeoLng":{"type":"number"},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesTerytCode":{"type":"string","pattern":"^\\d{7}$"},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["DRAFT","ACTIVE","CLOSED"]},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string","maxLength":60},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"customerId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"name":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"addressLine1":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine1"},"addressLine2":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesAddressLine2"},"city":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesCity"},"postalCode":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesPostalCode"},"country":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesCountry"},"geoLat":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesGeoLat"},"geoLng":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesGeoLng"},"terytCode":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesTerytCode"},"businessKey":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"}},"required":["id"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataHubsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataHubsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataHubsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataHubsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataHubsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataHubsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataHubsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataHubsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersGetParameters0Schema":{"type":"number"},"DocPathsEnergyMasterDataMetersGetParameters1Schema":{"type":"number"},"DocPathsEnergyMasterDataMetersGetParameters2Schema":{"type":"string"},"DocPathsEnergyMasterDataMetersGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataMetersGetParameters4Schema":{"type":"string"},"DocPathsEnergyMasterDataMetersGetParameters5Schema":{"type":"string"},"DocPathsEnergyMasterDataMetersGetParameters6Schema":{"type":"string","enum":["IN_STOCK","INSTALLED","REMOVED","SCRAPPED"]},"DocPathsEnergyMasterDataMetersGetParameters7Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataMetersGetParameters8Schema":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataMetersGetParameters9Schema":{"type":"string"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumber":{"type":"string"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeviceIdAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeviceIdAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeviceId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeviceIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeviceIdAnyOf1"}]},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRemoteRead":{"type":"boolean"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLegalizationDateAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLegalizationDateAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLegalizationDate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLegalizationDateAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLegalizationDateAnyOf1"}]},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["IN_STOCK","INSTALLED","REMOVED","SCRAPPED"]},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"serialNumber":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSerialNumber"},"deviceId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeviceId"},"remoteRead":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRemoteRead"},"legalizationDate":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLegalizationDate"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"createdAt":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","serialNumber","remoteRead","status","createdAt","updatedAt"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataMetersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataMetersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber":{"type":"string","minLength":1,"maxLength":120},"DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesDeviceId":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesRemoteRead":{"type":"boolean"},"DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesLegalizationDate":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["IN_STOCK","INSTALLED","REMOVED","SCRAPPED"]},"DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string","maxLength":60},"DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"serialNumber":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber"},"deviceId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesDeviceId"},"remoteRead":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesRemoteRead"},"legalizationDate":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesLegalizationDate"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"businessKey":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesLegalizationDate"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostRequestBodyContentApplicationJsonSchemaPropertiesLegalizationDate"}},"required":["serialNumber"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataMetersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataMetersPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsEnergyMasterDataMetersPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataMetersPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataMetersPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber":{"type":"string","minLength":1,"maxLength":120},"DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesDeviceId":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesRemoteRead":{"type":"boolean"},"DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesLegalizationDate":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["IN_STOCK","INSTALLED","REMOVED","SCRAPPED"]},"DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string","maxLength":60},"DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"serialNumber":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesSerialNumber"},"deviceId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesDeviceId"},"remoteRead":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesRemoteRead"},"legalizationDate":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesLegalizationDate"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"businessKey":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesLegalizationDate"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesLegalizationDate"},"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataMetersPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataMetersPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataMetersPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataMetersDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataMetersDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataMetersDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataMetersDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataMetersDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsGetParameters0Schema":{"type":"number"},"DocPathsEnergyMasterDataOsdsGetParameters1Schema":{"type":"number"},"DocPathsEnergyMasterDataOsdsGetParameters2Schema":{"type":"string"},"DocPathsEnergyMasterDataOsdsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataOsdsGetParameters4Schema":{"type":"string"},"DocPathsEnergyMasterDataOsdsGetParameters5Schema":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataOsdsGetParameters6Schema":{"type":"string","enum":["ACTIVE","INACTIVE"]},"DocPathsEnergyMasterDataOsdsGetParameters7Schema":{"type":"string"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxIdAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxIdAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxIdAnyOf1"}]},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommodity":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["ACTIVE","INACTIVE"]},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"taxId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTaxId"},"commodity":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommodity"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"createdAt":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","code","name","commodity","status","createdAt","updatedAt"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataOsdsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataOsdsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":60},"DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxId":{"type":"string","maxLength":40},"DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesCommodity":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["ACTIVE","INACTIVE"]},"DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string","maxLength":60},"DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"taxId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesTaxId"},"commodity":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesCommodity"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"businessKey":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"}},"required":["code","name"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataOsdsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataOsdsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsEnergyMasterDataOsdsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataOsdsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataOsdsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":60},"DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxId":{"type":"string","maxLength":40},"DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesCommodity":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["ACTIVE","INACTIVE"]},"DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string","maxLength":60},"DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"taxId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesTaxId"},"commodity":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesCommodity"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"businessKey":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutRequestBodyContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataOsdsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataOsdsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataOsdsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataOsdsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataOsdsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataOsdsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataOsdsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataOsdsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsGetParameters0Schema":{"type":"number"},"DocPathsEnergyMasterDataPodsGetParameters1Schema":{"type":"number"},"DocPathsEnergyMasterDataPodsGetParameters2Schema":{"type":"string"},"DocPathsEnergyMasterDataPodsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsGetParameters4Schema":{"type":"string"},"DocPathsEnergyMasterDataPodsGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsGetParameters7Schema":{"type":"string"},"DocPathsEnergyMasterDataPodsGetParameters8Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsGetParameters9Schema":{"type":"string"},"DocPathsEnergyMasterDataPodsGetParameters10Schema":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataPodsGetParameters11Schema":{"type":"string","enum":["DRAFT","ACTIVE","SUSPENDED","DECOMMISSIONED"]},"DocPathsEnergyMasterDataPodsGetParameters12Schema":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGsrn":{"type":"string"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommodity":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdArea":{"type":"string"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf1"}]},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["DRAFT","ACTIVE","SUSPENDED","DECOMMISSIONED"]},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"hubId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubId"},"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"gsrn":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGsrn"},"commodity":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommodity"},"osdArea":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdArea"},"osdId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdId"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"createdAt":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","hubId","code","gsrn","commodity","osdArea","status","createdAt","updatedAt"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesHubId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":60},"DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesGsrn":{},"DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesCommodity":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesOsdArea":{"type":"string","minLength":1,"maxLength":60},"DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesOsdId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["DRAFT","ACTIVE","SUSPENDED","DECOMMISSIONED"]},"DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string","maxLength":60},"DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"hubId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesHubId"},"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"gsrn":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesGsrn"},"commodity":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesCommodity"},"osdArea":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesOsdArea"},"osdId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesOsdId"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"businessKey":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"}},"required":["hubId","code","gsrn","osdArea"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsEnergyMasterDataPodsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesHubId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":60},"DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesGsrn":{},"DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesCommodity":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesOsdArea":{"type":"string","minLength":1,"maxLength":60},"DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesOsdId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["DRAFT","ACTIVE","SUSPENDED","DECOMMISSIONED"]},"DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string","maxLength":60},"DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"hubId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesHubId"},"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"gsrn":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesGsrn"},"commodity":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesCommodity"},"osdArea":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesOsdArea"},"osdId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesOsdId"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"businessKey":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutRequestBodyContentApplicationJsonSchemaPropertiesHubId"}},"required":["id"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataPodsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataPodsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgAssignmentsGetParameters0Schema":{"type":"number"},"DocPathsEnergyMasterDataPpgAssignmentsGetParameters1Schema":{"type":"number"},"DocPathsEnergyMasterDataPpgAssignmentsGetParameters2Schema":{"type":"string"},"DocPathsEnergyMasterDataPpgAssignmentsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgAssignmentsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgAssignmentsGetParameters5Schema":{"type":"string","enum":["customer","seller","aggregator","partner"]},"DocPathsEnergyMasterDataPpgAssignmentsGetParameters6Schema":{"type":"string"},"DocPathsEnergyMasterDataPpgAssignmentsGetParameters7Schema":{"type":"string"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPodId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartyRole":{"type":"string"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartyId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom":{"type":"string"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1"}]},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"podId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPodId"},"partyRole":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartyRole"},"partyId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPartyId"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo"}},"required":["id","podId","partyRole","partyId","validFrom"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPpgAssignmentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgAssignmentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsGetParameters0Schema":{"type":"number"},"DocPathsEnergyMasterDataPpgsGetParameters1Schema":{"type":"number"},"DocPathsEnergyMasterDataPpgsGetParameters2Schema":{"type":"string"},"DocPathsEnergyMasterDataPpgsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsGetParameters4Schema":{"type":"string"},"DocPathsEnergyMasterDataPpgsGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsGetParameters7Schema":{"type":"string"},"DocPathsEnergyMasterDataPpgsGetParameters8Schema":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsGetParameters9Schema":{"type":"string"},"DocPathsEnergyMasterDataPpgsGetParameters10Schema":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataPpgsGetParameters11Schema":{"type":"string","enum":["DRAFT","ACTIVE","SUSPENDED","DECOMMISSIONED"]},"DocPathsEnergyMasterDataPpgsGetParameters12Schema":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGsrn":{"type":"string"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommodity":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdArea":{"type":"string"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf1"}]},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["DRAFT","ACTIVE","SUSPENDED","DECOMMISSIONED"]},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"hubId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHubId"},"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"gsrn":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesGsrn"},"commodity":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommodity"},"osdArea":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdArea"},"osdId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdId"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"createdAt":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","hubId","code","gsrn","commodity","osdArea","status","createdAt","updatedAt"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPpgsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPpgsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesHubId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":60},"DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesGsrn":{},"DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesCommodity":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesOsdArea":{"type":"string","minLength":1,"maxLength":60},"DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesOsdId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["DRAFT","ACTIVE","SUSPENDED","DECOMMISSIONED"]},"DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string","maxLength":60},"DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"hubId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesHubId"},"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"gsrn":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesGsrn"},"commodity":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesCommodity"},"osdArea":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesOsdArea"},"osdId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesOsdId"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"businessKey":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"}},"required":["hubId","code","gsrn","osdArea"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPpgsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsEnergyMasterDataPpgsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPpgsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPpgsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesHubId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":60},"DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesGsrn":{},"DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesCommodity":{"type":"string","enum":["GAS","POWER","WATER"]},"DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesOsdArea":{"type":"string","minLength":1,"maxLength":60},"DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesOsdId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["DRAFT","ACTIVE","SUSPENDED","DECOMMISSIONED"]},"DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","maxLength":120},"DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string","maxLength":60},"DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"hubId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesHubId"},"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"gsrn":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesGsrn"},"commodity":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesCommodity"},"osdArea":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesOsdArea"},"osdId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesOsdId"},"status":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"businessKey":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutRequestBodyContentApplicationJsonSchemaPropertiesHubId"}},"required":["id"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataPpgsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPpgsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPpgsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataPpgsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPpgsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPpgsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPpgsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPpgsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdAssignPostParameters0Schema":{"type":"string"},"DocPathsEnergyMasterDataPodsIdAssignPostRequestBodyContentApplicationJsonSchemaPropertiesPartyRole":{"type":"string","enum":["customer","seller","aggregator","partner"]},"DocPathsEnergyMasterDataPodsIdAssignPostRequestBodyContentApplicationJsonSchemaPropertiesPartyId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdAssignPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataPodsIdAssignPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataPodsIdAssignPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"partyRole":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostRequestBodyContentApplicationJsonSchemaPropertiesPartyRole"},"partyId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostRequestBodyContentApplicationJsonSchemaPropertiesPartyId"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo"}},"required":["partyRole","partyId","validFrom"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPodId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyRole":{"type":"string"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidFrom":{"type":"string"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf1"}]},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignment":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesId"},"podId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPodId"},"partyRole":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyRole"},"partyId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyId"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidTo"}},"required":["id","podId","partyRole","partyId","validFrom","validTo"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesClosedAssignmentIdAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesClosedAssignmentIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesClosedAssignmentId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesClosedAssignmentIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesClosedAssignmentIdAnyOf1"}]},"DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesOk"},"assignment":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesAssignment"},"closedAssignmentId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses201ContentApplicationJsonSchemaPropertiesClosedAssignmentId"}},"required":["ok","assignment","closedAssignmentId"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdAssignPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdAssignPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdAssignPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdAssignPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdAssignPostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string","enum":["BITEMPORAL_OVERLAP"]},"DocPathsEnergyMasterDataPodsIdAssignPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdAssignPostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error","code"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterInstallPostParameters0Schema":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostRequestBodyContentApplicationJsonSchemaPropertiesMeterId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostRequestBodyContentApplicationJsonSchemaPropertiesInstallReading":{"type":"number"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"meterId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostRequestBodyContentApplicationJsonSchemaPropertiesMeterId"},"podId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostRequestBodyContentApplicationJsonSchemaPropertiesMeterId"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"installReading":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostRequestBodyContentApplicationJsonSchemaPropertiesInstallReading"}},"required":["meterId","podId","validFrom"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPodId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesMeterId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidFrom":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf1"}]},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReadingAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReadingAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReading":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReadingAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReadingAnyOf1"}]},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignment":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesId"},"podId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPodId"},"meterId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesMeterId"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidTo"},"installReading":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReading"}},"required":["id","podId","meterId","validFrom","validTo","installReading"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesOk"},"assignment":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses201ContentApplicationJsonSchemaPropertiesAssignment"}},"required":["ok","assignment"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterInstallPostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error","code"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterReplacePostParameters0Schema":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchemaPropertiesPodId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchemaPropertiesRemovalReading":{"type":"number"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchemaPropertiesInstallReading":{"type":"number"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchemaPropertiesRemovalReason":{"type":"string","enum":["REPLACEMENT","REVALIDATION","CUSTOMER_EXIT","OTHER"]},"DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"podId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchemaPropertiesPodId"},"newMeterId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchemaPropertiesPodId"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"removalReading":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchemaPropertiesRemovalReading"},"installReading":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchemaPropertiesInstallReading"},"removalReason":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostRequestBodyContentApplicationJsonSchemaPropertiesRemovalReason"}},"required":["podId","newMeterId","validFrom"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPodId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesMeterId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidFrom":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf1"}]},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReadingAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReadingAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReading":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReadingAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReadingAnyOf1"}]},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignment":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesId"},"podId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPodId"},"meterId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesMeterId"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidTo"},"installReading":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesInstallReading"}},"required":["id","podId","meterId","validFrom","validTo","installReading"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesClosedAssignmentId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesOk"},"assignment":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesAssignment"},"closedAssignmentId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses201ContentApplicationJsonSchemaPropertiesClosedAssignmentId"}},"required":["ok","assignment","closedAssignmentId"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdMeterReplacePostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error","code"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdTransferPostParameters0Schema":{"type":"string"},"DocPathsEnergyMasterDataPodsIdTransferPostRequestBodyContentApplicationJsonSchemaPropertiesPartyRole":{"type":"string","enum":["customer","seller","aggregator","partner"]},"DocPathsEnergyMasterDataPodsIdTransferPostRequestBodyContentApplicationJsonSchemaPropertiesPartyId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdTransferPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsEnergyMasterDataPodsIdTransferPostRequestBodyContentApplicationJsonSchemaPropertiesReason":{"type":"string","maxLength":500},"DocPathsEnergyMasterDataPodsIdTransferPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"partyRole":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostRequestBodyContentApplicationJsonSchemaPropertiesPartyRole"},"partyId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostRequestBodyContentApplicationJsonSchemaPropertiesPartyId"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"reason":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostRequestBodyContentApplicationJsonSchemaPropertiesReason"}},"required":["partyRole","partyId","validFrom"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesNoop":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPodId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyRole":{"type":"string"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidFrom":{"type":"string"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf1"}]},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignment":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesId"},"podId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPodId"},"partyRole":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyRole"},"partyId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyId"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidTo"}},"required":["id","podId","partyRole","partyId","validFrom","validTo"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesOk"},"noop":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesNoop"},"assignment":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses200ContentApplicationJsonSchemaPropertiesAssignment"}},"required":["ok","noop","assignment"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPodId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyRole":{"type":"string"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidFrom":{"type":"string"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf0":{"type":"null"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf1":{"type":"string"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidToAnyOf1"}]},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignment":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesId"},"podId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPodId"},"partyRole":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyRole"},"partyId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesPartyId"},"validFrom":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignmentPropertiesValidTo"}},"required":["id","podId","partyRole","partyId","validFrom","validTo"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesClosedAssignmentId":{"type":"string","format":"uuid"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesOk"},"assignment":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesAssignment"},"closedAssignmentId":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses201ContentApplicationJsonSchemaPropertiesClosedAssignmentId"}},"required":["ok","assignment","closedAssignmentId"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdTransferPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdTransferPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdTransferPostResponses404ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses404ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses404ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsEnergyMasterDataPodsIdTransferPostResponses409ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsEnergyMasterDataPodsIdTransferPostResponses409ContentApplicationJsonSchemaPropertiesCode":{"type":"string","enum":["BITEMPORAL_OVERLAP"]},"DocPathsEnergyMasterDataPodsIdTransferPostResponses409ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses409ContentApplicationJsonSchemaPropertiesError"},"code":{"$ref":"#/components/schemas/DocPathsEnergyMasterDataPodsIdTransferPostResponses409ContentApplicationJsonSchemaPropertiesCode"}},"required":["error","code"],"additionalProperties":false},"DocPathsConnectorOsdGazBatchesGetParameters0Schema":{"type":"number"},"DocPathsConnectorOsdGazBatchesGetParameters1Schema":{"type":"number"},"DocPathsConnectorOsdGazBatchesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazBatchesGetParameters3Schema":{"type":"string","enum":["PENDING","IN_PROGRESS","COMPLETED","FAILED","PARTIAL"]},"DocPathsConnectorOsdGazBatchesGetParameters4Schema":{"type":"string"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf1":{"type":"string"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf1"}]},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["PENDING","IN_PROGRESS","COMPLETED","FAILED","PARTIAL"]},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAtAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAtAnyOf1":{"type":"string"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAtAnyOf1"}]},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf1":{"type":"string"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf1"}]},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalFiles":{"type":"number"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParsedOk":{"type":"number"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParseErrors":{"type":"number"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecordsDispatched":{"type":"number"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1":{"type":"string"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1"}]},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"connectionId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId"},"pullStartedAt":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAt"},"completedAt":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAt"},"totalFiles":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalFiles"},"parsedOk":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParsedOk"},"parseErrors":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParseErrors"},"recordsDispatched":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRecordsDispatched"},"errorDetail":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail"},"createdAt":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","status","connectionId","totalFiles","parsedOk","parseErrors","recordsDispatched","createdAt","updatedAt"],"additionalProperties":false},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsConnectorOsdGazBatchesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazBatchesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazBatchesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazBatchesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazBatchesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsGetParameters0Schema":{"type":"number"},"DocPathsConnectorOsdGazConnectionsGetParameters1Schema":{"type":"number"},"DocPathsConnectorOsdGazConnectionsGetParameters2Schema":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazConnectionsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazConnectionsGetParameters5Schema":{"type":"boolean"},"DocPathsConnectorOsdGazConnectionsGetParameters6Schema":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdIdAnyOf1"}]},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHost":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPort":{"type":"number"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirIn":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirOut":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirArchive":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCronAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCronAnyOf1":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCron":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCronAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCronAnyOf1"}]},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"osdId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdId"},"host":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHost"},"port":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPort"},"dirIn":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirIn"},"dirOut":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirOut"},"dirArchive":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirArchive"},"pullScheduleCron":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCron"},"isActive":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"status":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"version":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","code","name","host","port","dirIn","dirOut","dirArchive","isActive","status","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazConnectionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":100},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesOsdId":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesHost":{"type":"string","minLength":1},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPortAllOf0":{"type":"number"},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPort":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPortAllOf0"}],"default":22},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirInAllOf0":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirIn":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirInAllOf0"}],"default":"in/"},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirOutAllOf0":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirOut":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirOutAllOf0"}],"default":"out/"},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirArchiveAllOf0":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirArchive":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirArchiveAllOf0"}],"default":"archive/"},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPullScheduleCron":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"osdId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesOsdId"},"host":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesHost"},"port":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPort"},"dirIn":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirIn"},"dirOut":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirOut"},"dirArchive":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirArchive"},"pullScheduleCron":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPullScheduleCron"},"isActive":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["code","name","host"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsConnectorOsdGazConnectionsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":100},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesOsdId":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesHost":{"type":"string","minLength":1},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPortAllOf0":{"type":"number"},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPort":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPortAllOf0"}],"default":22},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirInAllOf0":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirIn":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirInAllOf0"}],"default":"in/"},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirOutAllOf0":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirOut":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirOutAllOf0"}],"default":"out/"},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirArchiveAllOf0":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirArchive":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirArchiveAllOf0"}],"default":"archive/"},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPullScheduleCron":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"osdId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesOsdId"},"host":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesHost"},"port":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPort"},"dirIn":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirIn"},"dirOut":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirOut"},"dirArchive":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirArchive"},"pullScheduleCron":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPullScheduleCron"},"isActive":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsConnectorOsdGazConnectionsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazConnectionsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsConnectorOsdGazConnectionsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazConnectionsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazConnectionsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazFilesGetParameters0Schema":{"type":"number"},"DocPathsConnectorOsdGazFilesGetParameters1Schema":{"type":"number"},"DocPathsConnectorOsdGazFilesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazFilesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazFilesGetParameters4Schema":{"type":"string","enum":["POBRANY","SPARSOWANY","WYSLANY","BLAD_PARSOWANIA","ZARCHIWIZOWANY"]},"DocPathsConnectorOsdGazFilesGetParameters5Schema":{"type":"string","enum":["in","out"]},"DocPathsConnectorOsdGazFilesGetParameters6Schema":{"type":"string","enum":["READINGS","SWITCH_REQUEST","SWITCH_RESPONSE"]},"DocPathsConnectorOsdGazFilesGetParameters7Schema":{"type":"string"},"DocPathsConnectorOsdGazFilesGetParameters8Schema":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFilename":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentHash":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirection":{"type":"string","enum":["in","out"]},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["POBRANY","SPARSOWANY","WYSLANY","BLAD_PARSOWANIA","ZARCHIWIZOWANY"]},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMessageKindAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMessageKindAnyOf1":{"type":"string","enum":["READINGS","SWITCH_REQUEST","SWITCH_RESPONSE"]},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMessageKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMessageKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMessageKindAnyOf1"}]},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf1"}]},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePathAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePathAnyOf1":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePath":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePathAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePathAnyOf1"}]},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytesAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytesAnyOf1":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytesAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytesAnyOf1"}]},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1"}]},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystemAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystemAnyOf1":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystemAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystemAnyOf1"}]},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"filename":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFilename"},"contentHash":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentHash"},"direction":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirection"},"status":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"messageKind":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMessageKind"},"connectionId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId"},"batchId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchId"},"archivePath":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePath"},"sizeBytes":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytes"},"errorDetail":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystem"},"createdAt":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","businessKey","filename","contentHash","direction","status","connectionId","createdAt","updatedAt"],"additionalProperties":false},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsConnectorOsdGazFilesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazFilesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazFilesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazFilesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazSwitchRequestsPostRequestBodyContentApplicationJsonSchemaPropertiesConnectionId":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazSwitchRequestsPostRequestBodyContentApplicationJsonSchemaPropertiesRequestedSwitchDate":{"type":"string"},"DocPathsConnectorOsdGazSwitchRequestsPostRequestBodyContentApplicationJsonSchemaPropertiesPayload":{"type":"object","additionalProperties":true},"DocPathsConnectorOsdGazSwitchRequestsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"connectionId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostRequestBodyContentApplicationJsonSchemaPropertiesConnectionId"},"ppgId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostRequestBodyContentApplicationJsonSchemaPropertiesConnectionId"},"switchingCaseId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostRequestBodyContentApplicationJsonSchemaPropertiesConnectionId"},"requestedSwitchDate":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostRequestBodyContentApplicationJsonSchemaPropertiesRequestedSwitchDate"},"payload":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostRequestBodyContentApplicationJsonSchemaPropertiesPayload"}},"required":["connectionId","ppgId","switchingCaseId","requestedSwitchDate","payload"],"additionalProperties":false},"DocPathsConnectorOsdGazSwitchRequestsPostResponses202ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsConnectorOsdGazSwitchRequestsPostResponses202ContentApplicationJsonSchemaPropertiesConnectionId":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazSwitchRequestsPostResponses202ContentApplicationJsonSchemaPropertiesPpgId":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazSwitchRequestsPostResponses202ContentApplicationJsonSchemaPropertiesSwitchingCaseId":{"type":"string","format":"uuid"},"DocPathsConnectorOsdGazSwitchRequestsPostResponses202ContentApplicationJsonSchema":{"type":"object","properties":{"message":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostResponses202ContentApplicationJsonSchemaPropertiesMessage"},"connectionId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostResponses202ContentApplicationJsonSchemaPropertiesConnectionId"},"ppgId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostResponses202ContentApplicationJsonSchemaPropertiesPpgId"},"switchingCaseId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostResponses202ContentApplicationJsonSchemaPropertiesSwitchingCaseId"}},"required":["message","connectionId","ppgId","switchingCaseId"],"additionalProperties":false},"DocPathsConnectorOsdGazSwitchRequestsPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsConnectorOsdGazSwitchRequestsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazSwitchRequestsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazSwitchRequestsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazSwitchRequestsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazSwitchRequestsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsIdPullPostParameters0Schema":{"type":"string"},"DocPathsConnectorOsdGazConnectionsIdPullPostRequestBodyContentApplicationJsonSchemaPropertiesMessageKind":{"type":"string","enum":["READINGS","SWITCH_REQUEST","SWITCH_RESPONSE"]},"DocPathsConnectorOsdGazConnectionsIdPullPostRequestBodyContentApplicationJsonSchemaPropertiesDryRunAllOf0":{"type":"boolean"},"DocPathsConnectorOsdGazConnectionsIdPullPostRequestBodyContentApplicationJsonSchemaPropertiesDryRun":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostRequestBodyContentApplicationJsonSchemaPropertiesDryRunAllOf0"}],"default":false},"DocPathsConnectorOsdGazConnectionsIdPullPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"messageKind":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostRequestBodyContentApplicationJsonSchemaPropertiesMessageKind"},"dryRun":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostRequestBodyContentApplicationJsonSchemaPropertiesDryRun"}},"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesConnectionId":{"type":"string"},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesMessageKindAnyOf0":{"type":"null"},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesMessageKindAnyOf1":{"type":"string"},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesMessageKind":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesMessageKindAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesMessageKindAnyOf1"}]},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesDryRun":{"type":"boolean"},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchema":{"type":"object","properties":{"message":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesMessage"},"connectionId":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesConnectionId"},"messageKind":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesMessageKind"},"dryRun":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesDryRun"}},"required":["message","connectionId","dryRun"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorOsdGazConnectionsIdPullPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorOsdGazConnectionsIdPullPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringCorrectionsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringCorrectionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringCorrectionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringCorrectionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringCorrectionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringCorrectionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringCorrectionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringCorrectionsPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringCorrectionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringCorrectionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringCorrectionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringCorrectionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringCorrectionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringCorrectionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringPeriodsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringPeriodsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringPeriodsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringPeriodsPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringPeriodsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringPeriodsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringPeriodsPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringPeriodsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringPeriodsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringPeriodsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringPeriodsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringReadingsGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringReadingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringReadingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringReadingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringReadingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringReadingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringReadingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringReadingsPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringReadingsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringReadingsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringReadingsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringReadingsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringReadingsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringReadingsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringReadingsPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringReadingsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringReadingsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringReadingsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringReadingsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringReadingsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringReadingsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringReadingsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringReadingsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringReadingsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringReadingsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringReadingsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringReadingsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringOrgSlugPortalSelfReadingPostParameters0Schema":{"type":"string"},"DocPathsMeteringOrgSlugPortalSelfReadingPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringPeriodsIdBuildPostParameters0Schema":{"type":"string"},"DocPathsMeteringPeriodsIdBuildPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringPeriodsIdBuildPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsIdBuildPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdBuildPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringPeriodsIdBuildPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsIdBuildPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdBuildPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringPeriodsIdClosePostParameters0Schema":{"type":"string"},"DocPathsMeteringPeriodsIdClosePostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringPeriodsIdClosePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsIdClosePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdClosePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringPeriodsIdClosePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringPeriodsIdClosePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringPeriodsIdClosePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringReadingsIdEstimatePostParameters0Schema":{"type":"string"},"DocPathsMeteringReadingsIdEstimatePostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsMeteringReadingsIdEstimatePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringReadingsIdEstimatePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringReadingsIdEstimatePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMeteringReadingsIdEstimatePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMeteringReadingsIdEstimatePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMeteringReadingsIdEstimatePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataFixingsGetParameters0Schema":{"type":"number"},"DocPathsMarketDataFixingsGetParameters1Schema":{"type":"number"},"DocPathsMarketDataFixingsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsMarketDataFixingsGetParameters3Schema":{"type":"string","enum":["DRAFT","PUBLISHED","REVOKED"]},"DocPathsMarketDataFixingsGetParameters4Schema":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},"DocPathsMarketDataFixingsGetParameters5Schema":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},"DocPathsMarketDataFixingsGetParameters6Schema":{"type":"string"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIndexRefId":{"type":"string","format":"uuid"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFixingDate":{"type":"string"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue":{"type":"number"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"type":"string"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string","enum":["DRAFT","PUBLISHED","REVOKED"]},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPublishedAtAnyOf0":{"type":"null"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPublishedAtAnyOf1":{"type":"string"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPublishedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPublishedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPublishedAtAnyOf1"}]},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"indexRefId":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIndexRefId"},"fixingDate":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFixingDate"},"value":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValue"},"currency":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"status":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"publishedAt":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPublishedAt"}},"required":["id","indexRefId","fixingDate","value","currency","status","publishedAt"],"additionalProperties":false},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsMarketDataFixingsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataFixingsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataFixingsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataFixingsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesIndexRefId":{"type":"string","format":"uuid"},"DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesFixingDate":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},"DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"number"},"DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0":{"type":"string","minLength":1,"maxLength":8},"DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency":{"allOf":[{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0"}],"default":"PLN"},"DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceRef":{"type":"string"},"DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"indexRefId":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesIndexRefId"},"fixingDate":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesFixingDate"},"value":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesValue"},"currency":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency"},"sourceId":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesIndexRefId"},"sourceRef":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceRef"}},"required":["indexRefId","fixingDate","value"],"additionalProperties":false},"DocPathsMarketDataFixingsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsMarketDataFixingsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMarketDataFixingsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsMarketDataFixingsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsMarketDataFixingsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataFixingsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataFixingsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataFixingsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchemaPropertiesValue":{"type":"number"},"DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0":{"type":"string","minLength":1,"maxLength":8},"DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrency":{"allOf":[{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0"}],"default":"PLN"},"DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceId":{"type":"string","format":"uuid"},"DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceRef":{"type":"string"},"DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"value":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchemaPropertiesValue"},"currency":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrency"},"sourceId":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceId"},"sourceRef":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceRef"}},"additionalProperties":false},"DocPathsMarketDataFixingsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsMarketDataFixingsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsMarketDataFixingsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataFixingsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataFixingsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataFixingsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataFixingsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsMarketDataFixingsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsMarketDataFixingsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataFixingsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataFixingsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataFixingsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataFixingsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataIndexesGetParameters0Schema":{"type":"number"},"DocPathsMarketDataIndexesGetParameters1Schema":{"type":"number"},"DocPathsMarketDataIndexesGetParameters2Schema":{"type":"string"},"DocPathsMarketDataIndexesGetParameters3Schema":{"type":"string"},"DocPathsMarketDataIndexesGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsMarketDataIndexesGetParameters5Schema":{"type":"string"},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommodity":{"type":"string"},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"type":"string"},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit":{"type":"string"},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"commodity":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommodity"},"currency":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"unit":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnit"}},"required":["id","code","name","commodity","currency","unit"],"additionalProperties":false},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsMarketDataIndexesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataIndexesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataIndexesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataIndexesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":256},"DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesCommodity":{"type":"string","minLength":1,"maxLength":32},"DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0":{"type":"string","minLength":1,"maxLength":8},"DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency":{"allOf":[{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0"}],"default":"PLN"},"DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0":{"type":"string","minLength":1,"maxLength":32},"DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesUnit":{"allOf":[{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0"}],"default":"MWh"},"DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceId":{"type":"string","format":"uuid"},"DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"commodity":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesCommodity"},"currency":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency"},"unit":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesUnit"},"sourceId":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceId"}},"required":["code","name","commodity"],"additionalProperties":false},"DocPathsMarketDataIndexesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsMarketDataIndexesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMarketDataIndexesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsMarketDataIndexesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsMarketDataIndexesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataIndexesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataIndexesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataIndexesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":256},"DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesCommodity":{"type":"string","minLength":1,"maxLength":32},"DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0":{"type":"string","minLength":1,"maxLength":8},"DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrency":{"allOf":[{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0"}],"default":"PLN"},"DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0":{"type":"string","minLength":1,"maxLength":32},"DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesUnit":{"allOf":[{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesUnitAllOf0"}],"default":"MWh"},"DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceId":{"type":"string","format":"uuid"},"DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"commodity":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesCommodity"},"currency":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrency"},"unit":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesUnit"},"sourceId":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceId"}},"additionalProperties":false},"DocPathsMarketDataIndexesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsMarketDataIndexesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsMarketDataIndexesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataIndexesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataIndexesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataIndexesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataIndexesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsMarketDataIndexesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsMarketDataIndexesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataIndexesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataIndexesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataIndexesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataIndexesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataSourcesGetParameters0Schema":{"type":"number"},"DocPathsMarketDataSourcesGetParameters1Schema":{"type":"number"},"DocPathsMarketDataSourcesGetParameters2Schema":{"type":"string"},"DocPathsMarketDataSourcesGetParameters3Schema":{"type":"boolean"},"DocPathsMarketDataSourcesGetParameters4Schema":{"type":"string"},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceType":{"type":"string"},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"sourceType":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceType"},"isActive":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"}},"required":["id","code","name","sourceType","isActive"],"additionalProperties":false},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsMarketDataSourcesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataSourcesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataSourcesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataSourcesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":256},"DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string"},"DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceType":{"type":"string","enum":["TGE","TTF","NBP","EEX","ICE","MANUAL","OTHER"]},"DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesUrl":{"type":"string","format":"uri"},"DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesApiKey":{"type":"string"},"DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"sourceType":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceType"},"url":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesUrl"},"apiKey":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesApiKey"},"isActive":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["code","name","sourceType"],"additionalProperties":false},"DocPathsMarketDataSourcesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsMarketDataSourcesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsMarketDataSourcesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsMarketDataSourcesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsMarketDataSourcesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataSourcesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataSourcesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataSourcesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":256},"DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string"},"DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceType":{"type":"string","enum":["TGE","TTF","NBP","EEX","ICE","MANUAL","OTHER"]},"DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesUrl":{"type":"string","format":"uri"},"DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesApiKey":{"type":"string"},"DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"sourceType":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceType"},"url":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesUrl"},"apiKey":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesApiKey"},"isActive":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"additionalProperties":false},"DocPathsMarketDataSourcesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsMarketDataSourcesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsMarketDataSourcesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataSourcesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataSourcesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataSourcesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataSourcesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsMarketDataSourcesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsMarketDataSourcesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataSourcesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsMarketDataSourcesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsMarketDataSourcesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsMarketDataSourcesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingCalculationsGetParameters0Schema":{"type":"number"},"DocPathsPricingCalculationsGetParameters1Schema":{"type":"number"},"DocPathsPricingCalculationsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsPricingCalculationsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsPricingCalculationsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsPricingCalculationsGetParameters5Schema":{"type":"string","enum":["wstepna","finalna","skorygowana"]},"DocPathsPricingCalculationsGetParameters6Schema":{"type":"string"},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPpgId":{"type":"string","format":"uuid"},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRatingDate":{"type":"string"},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalNet":{"type":"number"},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"type":"string"},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"ppgId":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPpgId"},"ratingDate":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRatingDate"},"totalNet":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalNet"},"currency":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"status":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","ppgId","ratingDate","totalNet","currency","status"],"additionalProperties":false},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPricingCalculationsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingCalculationsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingCalculationsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingCalculationsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingCalculationsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingCalculationsPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsPricingCalculationsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingCalculationsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingCalculationsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingCalculationsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingCalculationsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{},"additionalProperties":false},"DocPathsPricingCalculationsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPricingCalculationsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPricingCalculationsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingCalculationsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingCalculationsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingCalculationsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingCalculationsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingCalculationsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPricingCalculationsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPricingCalculationsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPricingCalculationsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingCalculationsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingCalculationsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingCalculationsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingCalculationsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingCalculationsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingChargeComponentsGetParameters0Schema":{"type":"number"},"DocPathsPricingChargeComponentsGetParameters1Schema":{"type":"number"},"DocPathsPricingChargeComponentsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsPricingChargeComponentsGetParameters3Schema":{"type":"string","enum":["energia_czynna","abonament","dystrybucja_stala","dystrybucja_zmienna","akcyza","vat","inna"]},"DocPathsPricingChargeComponentsGetParameters4Schema":{"type":"string","enum":["SPRZEDAWCA","OSD"]},"DocPathsPricingChargeComponentsGetParameters5Schema":{"type":"string"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTariffVersionId":{"type":"string","format":"uuid"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTariffScope":{"type":"string"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice":{"type":"number"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"type":"string"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPassThrough":{"type":"boolean"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMarginEligible":{"type":"boolean"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"tariffVersionId":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTariffVersionId"},"kind":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"tariffScope":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTariffScope"},"unitPrice":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUnitPrice"},"currency":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"passThrough":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPassThrough"},"marginEligible":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMarginEligible"}},"required":["id","tariffVersionId","kind","tariffScope","unitPrice","currency","passThrough","marginEligible"],"additionalProperties":false},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPricingChargeComponentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingChargeComponentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingChargeComponentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingChargeComponentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesTariffVersionId":{"type":"string","format":"uuid"},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["energia_czynna","abonament","dystrybucja_stala","dystrybucja_zmienna","akcyza","vat","inna"]},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesTariffScope":{"type":"string","enum":["SPRZEDAWCA","OSD"]},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesUnit":{"type":"string","minLength":1,"maxLength":64},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesPriceUnit":{"type":"string","minLength":1,"maxLength":64},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPrice":{"type":"number"},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0":{"type":"string","minLength":1,"maxLength":8},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0"}],"default":"PLN"},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesPassThroughAllOf0":{"type":"boolean"},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesPassThrough":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesPassThroughAllOf0"}],"default":false},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesMarginEligibleAllOf0":{"type":"boolean"},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesMarginEligible":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesMarginEligibleAllOf0"}],"default":true},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesPositionAllOf0":{"type":"number"},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesPosition":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesPositionAllOf0"}],"default":0},"DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"tariffVersionId":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesTariffVersionId"},"kind":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesKind"},"tariffScope":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesTariffScope"},"unit":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesUnit"},"priceUnit":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesPriceUnit"},"unitPrice":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesUnitPrice"},"currency":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency"},"passThrough":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesPassThrough"},"marginEligible":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesMarginEligible"},"position":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostRequestBodyContentApplicationJsonSchemaPropertiesPosition"}},"required":["tariffVersionId","kind","tariffScope","unit","priceUnit","unitPrice"],"additionalProperties":false},"DocPathsPricingChargeComponentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsPricingChargeComponentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPricingChargeComponentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsPricingChargeComponentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPricingChargeComponentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingChargeComponentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingChargeComponentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingChargeComponentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["energia_czynna","abonament","dystrybucja_stala","dystrybucja_zmienna","akcyza","vat","inna"]},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesTariffScope":{"type":"string","enum":["SPRZEDAWCA","OSD"]},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesUnit":{"type":"string","minLength":1,"maxLength":64},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesPriceUnit":{"type":"string","minLength":1,"maxLength":64},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPrice":{"type":"number"},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0":{"type":"string","minLength":1,"maxLength":8},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrency":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0"}],"default":"PLN"},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesPassThroughAllOf0":{"type":"boolean"},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesPassThrough":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesPassThroughAllOf0"}],"default":false},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesMarginEligibleAllOf0":{"type":"boolean"},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesMarginEligible":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesMarginEligibleAllOf0"}],"default":true},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesPositionAllOf0":{"type":"number"},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesPosition":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesPositionAllOf0"}],"default":0},"DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"kind":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesKind"},"tariffScope":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesTariffScope"},"unit":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesUnit"},"priceUnit":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesPriceUnit"},"unitPrice":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesUnitPrice"},"currency":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesCurrency"},"passThrough":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesPassThrough"},"marginEligible":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesMarginEligible"},"position":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutRequestBodyContentApplicationJsonSchemaPropertiesPosition"}},"additionalProperties":false},"DocPathsPricingChargeComponentsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPricingChargeComponentsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPricingChargeComponentsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingChargeComponentsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingChargeComponentsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingChargeComponentsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingChargeComponentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPricingChargeComponentsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPricingChargeComponentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingChargeComponentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingChargeComponentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingChargeComponentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingChargeComponentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingFormulasGetParameters0Schema":{"type":"number"},"DocPathsPricingFormulasGetParameters1Schema":{"type":"number"},"DocPathsPricingFormulasGetParameters2Schema":{"type":"string"},"DocPathsPricingFormulasGetParameters3Schema":{"type":"string","enum":["fixed","indexed"]},"DocPathsPricingFormulasGetParameters4Schema":{"type":"string","enum":["DRAFT","ACTIVE","ARCHIVED","REVOKED"]},"DocPathsPricingFormulasGetParameters5Schema":{"type":"string"},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string","enum":["fixed","indexed"]},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"type":"string"},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"kind":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"currency":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"status":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","name","kind","currency","status"],"additionalProperties":false},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPricingFormulasGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingFormulasGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingFormulasGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingFormulasGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingFormulasGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":256},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["fixed","indexed"]},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesFixedPrice":{"type":"number"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0":{"type":"string","minLength":1,"maxLength":8},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0"}],"default":"PLN"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesIndexRefId":{"type":"string","format":"uuid"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesAveragingWindow":{"type":"number"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesSpread":{"type":"number"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesCap":{"type":"number"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesFloor":{"type":"number"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["DRAFT","ACTIVE","ARCHIVED","REVOKED"]},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"DRAFT"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"type":"string","format":"date-time"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"type":"string"},"DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"kind":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesKind"},"fixedPrice":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesFixedPrice"},"currency":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency"},"indexRefId":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesIndexRefId"},"averagingWindow":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesAveragingWindow"},"spread":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesSpread"},"cap":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesCap"},"floor":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesFloor"},"businessKey":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"validFrom":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"owner":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostRequestBodyContentApplicationJsonSchemaPropertiesOwner"}},"required":["name","kind"],"additionalProperties":false},"DocPathsPricingFormulasPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsPricingFormulasPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPricingFormulasPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPricingFormulasPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPricingFormulasPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsPricingFormulasPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPricingFormulasPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingFormulasPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingFormulasPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingFormulasPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingFormulasPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":256},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["fixed","indexed"]},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesFixedPrice":{"type":"number"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0":{"type":"string","minLength":1,"maxLength":8},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesCurrency":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0"}],"default":"PLN"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesIndexRefId":{"type":"string","format":"uuid"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesAveragingWindow":{"type":"number"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesSpread":{"type":"number"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesCap":{"type":"number"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesFloor":{"type":"number"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["DRAFT","ACTIVE","ARCHIVED","REVOKED"]},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"DRAFT"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"type":"string","format":"date-time"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"type":"string"},"DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"kind":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesKind"},"fixedPrice":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesFixedPrice"},"currency":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesCurrency"},"indexRefId":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesIndexRefId"},"averagingWindow":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesAveragingWindow"},"spread":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesSpread"},"cap":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesCap"},"floor":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesFloor"},"businessKey":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"validFrom":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"owner":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutRequestBodyContentApplicationJsonSchemaPropertiesOwner"}},"additionalProperties":false},"DocPathsPricingFormulasPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPricingFormulasPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPricingFormulasPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingFormulasPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingFormulasPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingFormulasPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingFormulasPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingFormulasDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPricingFormulasDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPricingFormulasDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPricingFormulasDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingFormulasDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingFormulasDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingFormulasDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingFormulasDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingFormulasDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingProductsGetParameters0Schema":{"type":"number"},"DocPathsPricingProductsGetParameters1Schema":{"type":"number"},"DocPathsPricingProductsGetParameters2Schema":{"type":"string"},"DocPathsPricingProductsGetParameters3Schema":{"type":"string","enum":["DRAFT","ACTIVE","ARCHIVED","REVOKED"]},"DocPathsPricingProductsGetParameters4Schema":{"type":"string"},"DocPathsPricingProductsGetParameters5Schema":{"type":"string"},"DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommodity":{"type":"string"},"DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"commodity":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCommodity"},"status":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","name","commodity","status"],"additionalProperties":false},"DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPricingProductsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPricingProductsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingProductsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingProductsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingProductsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingProductsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":256},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string"},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCommodityAllOf0":{"type":"string"},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCommodity":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCommodityAllOf0"}],"default":"GAS"},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesProductType":{"type":"string"},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId":{"type":"string","format":"uuid"},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string"},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["DRAFT","ACTIVE","ARCHIVED","REVOKED"]},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"DRAFT"},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"type":"string","format":"date-time"},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string"},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"type":"string"},"DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"commodity":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCommodity"},"productType":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesProductType"},"catalogProductId":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId"},"businessKey":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"validFrom":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"owner":{"$ref":"#/components/schemas/DocPathsPricingProductsPostRequestBodyContentApplicationJsonSchemaPropertiesOwner"}},"required":["name"],"additionalProperties":false},"DocPathsPricingProductsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsPricingProductsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPricingProductsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPricingProductsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPricingProductsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsPricingProductsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPricingProductsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPricingProductsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingProductsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingProductsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingProductsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingProductsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingProductsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":256},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"type":"string"},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCommodityAllOf0":{"type":"string"},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCommodity":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCommodityAllOf0"}],"default":"GAS"},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesProductType":{"type":"string"},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId":{"type":"string","format":"uuid"},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string"},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["DRAFT","ACTIVE","ARCHIVED","REVOKED"]},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"DRAFT"},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"type":"string","format":"date-time"},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string"},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"type":"string"},"DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"commodity":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCommodity"},"productType":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesProductType"},"catalogProductId":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesCatalogProductId"},"businessKey":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"validFrom":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"owner":{"$ref":"#/components/schemas/DocPathsPricingProductsPutRequestBodyContentApplicationJsonSchemaPropertiesOwner"}},"additionalProperties":false},"DocPathsPricingProductsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPricingProductsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPricingProductsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPricingProductsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingProductsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingProductsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingProductsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingProductsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingProductsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingProductsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPricingProductsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPricingProductsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPricingProductsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingProductsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingProductsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingProductsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingProductsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingProductsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingRatePostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsPricingRatePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingRatePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingRatePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingRatePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingRatePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingRatePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingTariffsGetParameters0Schema":{"type":"number"},"DocPathsPricingTariffsGetParameters1Schema":{"type":"number"},"DocPathsPricingTariffsGetParameters2Schema":{"type":"string"},"DocPathsPricingTariffsGetParameters3Schema":{"type":"string","enum":["DRAFT","ACTIVE","ARCHIVED","REVOKED"]},"DocPathsPricingTariffsGetParameters4Schema":{"type":"string","enum":["SPRZEDAWCA","OSD"]},"DocPathsPricingTariffsGetParameters5Schema":{"type":"string","format":"uuid"},"DocPathsPricingTariffsGetParameters6Schema":{"type":"string","format":"date-time"},"DocPathsPricingTariffsGetParameters7Schema":{"type":"string"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTariffCode":{"type":"string"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTariffScope":{"type":"string","enum":["SPRZEDAWCA","OSD"]},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf0":{"type":"null"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf1":{"type":"string"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf0"},{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFromAnyOf1"}]},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0":{"type":"null"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1":{"type":"string"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1"}]},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"tariffCode":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTariffCode"},"tariffScope":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTariffScope"},"status":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"validFrom":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo"}},"required":["id","tariffCode","tariffScope","status","validFrom","validTo"],"additionalProperties":false},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPricingTariffsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingTariffsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingTariffsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingTariffsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingTariffsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesTariffCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesTariffScope":{"type":"string","enum":["SPRZEDAWCA","OSD"]},"DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["DRAFT","ACTIVE","ARCHIVED","REVOKED"]},"DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"DRAFT"},"DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string"},"DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"type":"string","format":"date-time"},"DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string"},"DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"type":"string"},"DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"tariffCode":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesTariffCode"},"tariffScope":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesTariffScope"},"productId":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"osdId":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"status":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"businessKey":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"validFrom":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"owner":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostRequestBodyContentApplicationJsonSchemaPropertiesOwner"}},"required":["tariffCode","tariffScope"],"additionalProperties":false},"DocPathsPricingTariffsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsPricingTariffsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPricingTariffsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPricingTariffsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPricingTariffsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsPricingTariffsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPricingTariffsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingTariffsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingTariffsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingTariffsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingTariffsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesTariffCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesTariffScope":{"type":"string","enum":["SPRZEDAWCA","OSD"]},"DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesProductId":{"type":"string","format":"uuid"},"DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["DRAFT","ACTIVE","ARCHIVED","REVOKED"]},"DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"DRAFT"},"DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string"},"DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string","format":"date-time"},"DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"type":"string","format":"date-time"},"DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string"},"DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"type":"string"},"DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"tariffCode":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesTariffCode"},"tariffScope":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesTariffScope"},"productId":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"osdId":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesProductId"},"status":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"businessKey":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"validFrom":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"owner":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutRequestBodyContentApplicationJsonSchemaPropertiesOwner"}},"additionalProperties":false},"DocPathsPricingTariffsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPricingTariffsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPricingTariffsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingTariffsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingTariffsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingTariffsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingTariffsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingTariffsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsPricingTariffsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsPricingTariffsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsPricingTariffsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingTariffsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingTariffsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPricingTariffsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPricingTariffsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPricingTariffsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsAttachmentsGetParameters0Schema":{"type":"number"},"DocPathsContractsAttachmentsGetParameters1Schema":{"type":"number"},"DocPathsContractsAttachmentsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsContractsAttachmentsGetParameters3Schema":{"type":"string"},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStorageKey":{"type":"string"},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf0":{"type":"null"},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf1":{"type":"string"},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeTypeAnyOf1"}]},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"contractId":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"storageKey":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStorageKey"},"mimeType":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMimeType"}},"required":["id","contractId","storageKey"],"additionalProperties":false},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsContractsAttachmentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsAttachmentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsAttachmentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsAttachmentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesFilename":{"type":"string","minLength":1,"maxLength":256},"DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMimeTypeAnyOf0":{"type":"null"},"DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMimeTypeAnyOf1":{"type":"string","maxLength":128},"DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMimeType":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMimeTypeAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMimeTypeAnyOf1"}]},"DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesStorageKey":{"type":"string","minLength":1,"maxLength":512},"DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBytesAnyOf0":{"type":"null"},"DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBytesAnyOf1":{"type":"number"},"DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBytes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBytesAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBytesAnyOf1"}]},"DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"contractId":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"filename":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesFilename"},"mimeType":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesMimeType"},"storageKey":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesStorageKey"},"sizeBytes":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSizeBytes"}},"required":["contractId","filename","storageKey"],"additionalProperties":false},"DocPathsContractsAttachmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsContractsAttachmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsContractsAttachmentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsContractsAttachmentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsContractsAttachmentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsAttachmentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsAttachmentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsAttachmentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsAttachmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsAttachmentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsAttachmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsAttachmentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsAttachmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsCalendarGetParameters0Schema":{"type":"number"},"DocPathsContractsCalendarGetParameters1Schema":{"type":"number"},"DocPathsContractsCalendarGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsContractsCalendarGetParameters3Schema":{"type":"string","enum":["START_DOSTAW","KONIEC_UMOWY","WYPOWIEDZENIE","SWITCHING","CUT_OFF_OSD","BILLING","INNA"]},"DocPathsContractsCalendarGetParameters4Schema":{"type":"string"},"DocPathsContractsCalendarGetParameters5Schema":{"type":"string"},"DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalendarId":{"type":"string","format":"uuid"},"DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueAt":{"type":"string"},"DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"calendarId":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCalendarId"},"kind":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"dueAt":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueAt"}},"required":["id","calendarId","kind","dueAt"],"additionalProperties":false},"DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsContractsCalendarGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsCalendarGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsCalendarGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsCalendarGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsCalendarGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesCalendarId":{"type":"string","format":"uuid"},"DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesKind":{"type":"string","enum":["START_DOSTAW","KONIEC_UMOWY","WYPOWIEDZENIE","SWITCHING","CUT_OFF_OSD","BILLING","INNA"]},"DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesDueAt":{"type":"string"},"DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0":{"type":"null"},"DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1":{"type":"string","maxLength":1024},"DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesNote":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesNoteAnyOf1"}]},"DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"calendarId":{"$ref":"#/components/schemas/DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesCalendarId"},"kind":{"$ref":"#/components/schemas/DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesKind"},"dueAt":{"$ref":"#/components/schemas/DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesDueAt"},"note":{"$ref":"#/components/schemas/DocPathsContractsCalendarPostRequestBodyContentApplicationJsonSchemaPropertiesNote"}},"required":["calendarId","kind","dueAt"],"additionalProperties":false},"DocPathsContractsCalendarPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsContractsCalendarPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsContractsCalendarPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsCalendarPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsCalendarPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsContractsCalendarPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsCalendarPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsContractsCalendarPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsCalendarPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsCalendarPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsCalendarPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsCalendarPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsCalendarPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsCalendarDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsCalendarDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsCalendarDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsCalendarDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsCalendarDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsCalendarDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsGetParameters0Schema":{"type":"number"},"DocPathsContractsContractsGetParameters1Schema":{"type":"number"},"DocPathsContractsContractsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsContractsContractsGetParameters3Schema":{"type":"string","enum":["UMOWA_ROBOCZA","WYMAGA_UZUPELNIENIA","GOTOWA_DO_GENEROWANIA","OCZEKUJE_NA_PODPIS","PODPISANA","AKTYWNA","ANEKSOWANA","ZAKONCZONA","ROZWIAZANA"]},"DocPathsContractsContractsGetParameters4Schema":{"type":"string","enum":["sprzedaz","kompleksowa","agregacja","program_elastycznosci","aneks"]},"DocPathsContractsContractsGetParameters5Schema":{"type":"string"},"DocPathsContractsContractsGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsContractsContractsGetParameters7Schema":{"type":"string"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"type":"string"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType":{"type":"string"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSellerIdAnyOf0":{"type":"null"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSellerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSellerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSellerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSellerIdAnyOf1"}]},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom":{"type":"string"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0":{"type":"null"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1":{"type":"string"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1"}]},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"type":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesType"},"status":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"customerId":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId"},"sellerId":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSellerId"},"validFrom":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo"},"createdAt":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","businessKey","type","status","customerId","validFrom","createdAt","updatedAt"],"additionalProperties":false},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsContractsContractsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsContractsContractsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","minLength":1,"maxLength":64},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesType":{"type":"string","enum":["sprzedaz","kompleksowa","agregacja","program_elastycznosci","aneks"]},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["UMOWA_ROBOCZA","WYMAGA_UZUPELNIENIA","GOTOWA_DO_GENEROWANIA","OCZEKUJE_NA_PODPIS","PODPISANA","AKTYWNA","ANEKSOWANA","ZAKONCZONA","ROZWIAZANA"]},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"UMOWA_ROBOCZA"},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSellerIdAnyOf0":{"type":"null"},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSellerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"}]},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesAggregatorIdAnyOf0":{"type":"null"},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesAggregatorId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesAggregatorIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"}]},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesServiceModelAnyOf0":{"type":"null"},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesServiceModelAnyOf1":{"type":"string","maxLength":32},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesServiceModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesServiceModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesServiceModelAnyOf1"}]},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesProductModelAnyOf0":{"type":"null"},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesProductModelAnyOf1":{"type":"string","maxLength":32},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesProductModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesProductModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesProductModelAnyOf1"}]},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string"},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0":{"type":"null"},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"}]},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0":{"type":"null"},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1":{"type":"string","maxLength":64},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1"}]},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0":{"type":"null"},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1":{"type":"string","maxLength":128},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1"}]},"DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"businessKey":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"type":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesType"},"status":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"customerId":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"sellerId":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"aggregatorId":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesAggregatorId"},"serviceModel":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesServiceModel"},"productModel":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesProductModel"},"validFrom":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"owner":{"$ref":"#/components/schemas/DocPathsContractsContractsPostRequestBodyContentApplicationJsonSchemaPropertiesOwner"}},"required":["type","customerId","validFrom"],"additionalProperties":false},"DocPathsContractsContractsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsContractsContractsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsContractsContractsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsContractsContractsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsContractsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsContractsContractsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","minLength":1,"maxLength":64},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesType":{"type":"string","enum":["sprzedaz","kompleksowa","agregacja","program_elastycznosci","aneks"]},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["UMOWA_ROBOCZA","WYMAGA_UZUPELNIENIA","GOTOWA_DO_GENEROWANIA","OCZEKUJE_NA_PODPIS","PODPISANA","AKTYWNA","ANEKSOWANA","ZAKONCZONA","ROZWIAZANA"]},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"UMOWA_ROBOCZA"},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSellerIdAnyOf0":{"type":"null"},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSellerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSellerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"}]},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesAggregatorIdAnyOf0":{"type":"null"},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesAggregatorId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesAggregatorIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"}]},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesServiceModelAnyOf0":{"type":"null"},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesServiceModelAnyOf1":{"type":"string","maxLength":32},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesServiceModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesServiceModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesServiceModelAnyOf1"}]},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesProductModelAnyOf0":{"type":"null"},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesProductModelAnyOf1":{"type":"string","maxLength":32},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesProductModel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesProductModelAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesProductModelAnyOf1"}]},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string"},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0":{"type":"null"},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"}]},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0":{"type":"null"},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1":{"type":"string","maxLength":64},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1"}]},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0":{"type":"null"},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1":{"type":"string","maxLength":128},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1"}]},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesVersion":{"type":"number"},"DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"businessKey":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"type":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesType"},"status":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"customerId":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"sellerId":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"aggregatorId":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesAggregatorId"},"serviceModel":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesServiceModel"},"productModel":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesProductModel"},"validFrom":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"owner":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesOwner"},"id":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"version":{"$ref":"#/components/schemas/DocPathsContractsContractsPutRequestBodyContentApplicationJsonSchemaPropertiesVersion"}},"required":["id"],"additionalProperties":false},"DocPathsContractsContractsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsContractsContractsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsContractsContractsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsContractsContractsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsContractsContractsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsContractsContractsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsContractsContractsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPoaGetParameters0Schema":{"type":"number"},"DocPathsContractsPoaGetParameters1Schema":{"type":"number"},"DocPathsContractsPoaGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsContractsPoaGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsContractsPoaGetParameters4Schema":{"type":"string"},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrincipalCustomerId":{"type":"string","format":"uuid"},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom":{"type":"string"},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0":{"type":"null"},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1":{"type":"string"},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1"}]},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"principalCustomerId":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPrincipalCustomerId"},"status":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"validFrom":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo"}},"required":["id","principalCustomerId","status","validFrom"],"additionalProperties":false},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsContractsPoaGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsContractsPoaGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPoaGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPoaGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPoaGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPoaGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf0":{"type":"null"},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesContractId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf1"}]},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string"},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0":{"type":"null"},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"}]},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesScopesItems":{"type":"string","enum":["assignment","switching","billing","portal"]},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesScopes":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesScopesItems"},"minItems":1},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesScopeMetadata":{"type":"object","additionalProperties":true},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf0":{"type":"null"},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf1":{"type":"string","maxLength":64},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf1"}]},"DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"contractId":{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"principalCustomerId":{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesContractIdAnyOf1"},"validFrom":{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"scopes":{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesScopes"},"scopeMetadata":{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesScopeMetadata"},"businessKey":{"$ref":"#/components/schemas/DocPathsContractsPoaPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"}},"required":["principalCustomerId","validFrom","scopes"],"additionalProperties":false},"DocPathsContractsPoaPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsContractsPoaPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsContractsPoaPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPoaPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPoaPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsContractsPoaPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsPoaPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsContractsPoaPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPoaPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPoaPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPoaPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPoaPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPoaPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPoaDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPoaDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPoaDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPoaDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPoaDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPoaDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPpgAssignmentsGetParameters0Schema":{"type":"number"},"DocPathsContractsPpgAssignmentsGetParameters1Schema":{"type":"number"},"DocPathsContractsPpgAssignmentsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsContractsPpgAssignmentsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsContractsPpgAssignmentsGetParameters4Schema":{"type":"string"},"DocPathsContractsPpgAssignmentsGetParameters5Schema":{"type":"string"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPpgId":{"type":"string","format":"uuid"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom":{"type":"string"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0":{"type":"null"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1":{"type":"string"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1"}]},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"contractId":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"ppgId":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPpgId"},"validFrom":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo"},"status":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","contractId","ppgId","validFrom","status"],"additionalProperties":false},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsContractsPpgAssignmentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPpgAssignmentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPpgAssignmentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPpgAssignmentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string"},"DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string"},"DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"ACTIVE"},"DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0":{"type":"null"},"DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1":{"type":"string","maxLength":64},"DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1"}]},"DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"contractId":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"ppgId":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"validFrom":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"status":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"}},"required":["contractId","ppgId","validFrom"],"additionalProperties":false},"DocPathsContractsPpgAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsContractsPpgAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsContractsPpgAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsContractsPpgAssignmentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsContractsPpgAssignmentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPpgAssignmentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPpgAssignmentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPpgAssignmentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPpgAssignmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPpgAssignmentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPpgAssignmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPpgAssignmentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPpgAssignmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPriceAssignmentsGetParameters0Schema":{"type":"number"},"DocPathsContractsPriceAssignmentsGetParameters1Schema":{"type":"number"},"DocPathsContractsPriceAssignmentsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsContractsPriceAssignmentsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsContractsPriceAssignmentsGetParameters4Schema":{"type":"string"},"DocPathsContractsPriceAssignmentsGetParameters5Schema":{"type":"string"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceId":{"type":"string","format":"uuid"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom":{"type":"string"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0":{"type":"null"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1":{"type":"string"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidToAnyOf1"}]},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"contractId":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"priceId":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPriceId"},"validFrom":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesValidTo"},"status":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"}},"required":["id","contractId","priceId","validFrom","status"],"additionalProperties":false},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsContractsPriceAssignmentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPriceAssignmentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPriceAssignmentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPriceAssignmentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string"},"DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0":{"type":"null"},"DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"}]},"DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf0":{"type":"null"},"DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf1":{"type":"string","maxLength":64},"DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf1"}]},"DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"contractId":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"priceId":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"validFrom":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"businessKey":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"}},"required":["contractId","priceId","validFrom"],"additionalProperties":false},"DocPathsContractsPriceAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsContractsPriceAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsContractsPriceAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsContractsPriceAssignmentsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsContractsPriceAssignmentsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPriceAssignmentsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPriceAssignmentsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPriceAssignmentsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPriceAssignmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPriceAssignmentsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsPriceAssignmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsPriceAssignmentsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsPriceAssignmentsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsTemplatesGetParameters0Schema":{"type":"number"},"DocPathsContractsTemplatesGetParameters1Schema":{"type":"number"},"DocPathsContractsTemplatesGetParameters2Schema":{"type":"boolean"},"DocPathsContractsTemplatesGetParameters3Schema":{"type":"string"},"DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"isActive":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"}},"required":["id","code","name","isActive"],"additionalProperties":false},"DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsContractsTemplatesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsTemplatesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsTemplatesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsTemplatesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsTemplatesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":64},"DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":256},"DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesContent":{"type":"object","additionalProperties":true},"DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"content":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesContent"},"isActive":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["code","name"],"additionalProperties":false},"DocPathsContractsTemplatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsContractsTemplatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsContractsTemplatesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsContractsTemplatesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsContractsTemplatesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsTemplatesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsTemplatesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsTemplatesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsTemplatesPutResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsContractsTemplatesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsTemplatesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsTemplatesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsTemplatesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsTemplatesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsTemplatesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsTemplatesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsTemplatesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsTemplatesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsTemplatesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsTemplatesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsVersionsGetParameters0Schema":{"type":"number"},"DocPathsContractsVersionsGetParameters1Schema":{"type":"number"},"DocPathsContractsVersionsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsContractsVersionsGetParameters3Schema":{"type":"string"},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersionNumber":{"type":"number"},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChangeKind":{"type":"string"},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"contractId":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"versionNumber":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersionNumber"},"changeKind":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChangeKind"},"status":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"createdAt":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"}},"required":["id","contractId","versionNumber","changeKind","status","createdAt"],"additionalProperties":false},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsContractsVersionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsVersionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsVersionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsVersionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsVersionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdActivatePostParameters0Schema":{"type":"string"},"DocPathsContractsContractsIdActivatePostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsContractsContractsIdActivatePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdActivatePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdActivatePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdActivatePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdActivatePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdActivatePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdAmendPostParameters0Schema":{"type":"string"},"DocPathsContractsContractsIdAmendPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsContractsContractsIdAmendPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdAmendPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAmendPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdAmendPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdAmendPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAmendPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdAssignPpgPostParameters0Schema":{"type":"string"},"DocPathsContractsContractsIdAssignPpgPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsContractsContractsIdAssignPpgPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdAssignPpgPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAssignPpgPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdAssignPpgPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdAssignPpgPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdAssignPpgPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdRemovePpgPostParameters0Schema":{"type":"string"},"DocPathsContractsContractsIdRemovePpgPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsContractsContractsIdRemovePpgPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdRemovePpgPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRemovePpgPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdRemovePpgPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdRemovePpgPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRemovePpgPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdRenewPostParameters0Schema":{"type":"string"},"DocPathsContractsContractsIdRenewPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsContractsContractsIdRenewPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdRenewPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRenewPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdRenewPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdRenewPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdRenewPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdTerminatePostParameters0Schema":{"type":"string"},"DocPathsContractsContractsIdTerminatePostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsContractsContractsIdTerminatePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdTerminatePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdTerminatePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsContractsContractsIdTerminatePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsContractsContractsIdTerminatePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsContractsContractsIdTerminatePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingAccountsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsBillingAccountsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsBillingAccountsGetParameters2Schema":{"type":"string","enum":["AKTYWNE","ZAMKNIETE","ZAWIESZONE"]},"DocPathsBillingAccountsGetParameters3Schema":{"type":"number"},"DocPathsBillingAccountsGetParameters4Schema":{"type":"number"},"DocPathsBillingAccountsGetParameters5Schema":{"type":"string"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"type":"string"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBalance":{"type":"string"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"type":"string"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"contractId":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"customerId":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId"},"status":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"balance":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBalance"},"currency":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"version":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","businessKey","contractId","customerId","status","balance","currency","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsBillingAccountsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingAccountsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingAccountsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingAccountsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingAccountsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingInvoicesCorrectPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsBillingInvoicesCorrectPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingInvoicesCorrectPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingInvoicesCorrectPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingInvoicesCorrectPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingInvoicesCorrectPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingInvoicesCorrectPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingInvoicesKsefSubmitPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsBillingInvoicesKsefSubmitPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingInvoicesKsefSubmitPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingInvoicesKsefSubmitPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingInvoicesKsefSubmitPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingInvoicesKsefSubmitPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingInvoicesKsefSubmitPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingInvoicesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsBillingInvoicesGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsBillingInvoicesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsBillingInvoicesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsBillingInvoicesGetParameters4Schema":{"type":"string","enum":["ROBOCZA","WYSTAWIONA","WYSLANA","ZAPLACONA","CZESCIOWO_ZAPLACONA","PRZETERMINOWANA","KSEF_ZAAKCEPTOWANA","KSEF_ODRZUCONA","ANULOWANA"]},"DocPathsBillingInvoicesGetParameters5Schema":{"type":"string"},"DocPathsBillingInvoicesGetParameters6Schema":{"type":"string"},"DocPathsBillingInvoicesGetParameters7Schema":{"type":"string"},"DocPathsBillingInvoicesGetParameters8Schema":{"type":"number"},"DocPathsBillingInvoicesGetParameters9Schema":{"type":"number"},"DocPathsBillingInvoicesGetParameters10Schema":{"type":"string","enum":["issueDate","createdAt","status","businessKey"]},"DocPathsBillingInvoicesGetParameters11Schema":{"type":"string","enum":["asc","desc"]},"DocPathsBillingInvoicesGetParameters12Schema":{"type":"string"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"type":"string"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuyerId":{"type":"string","format":"uuid"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalGross":{"type":"string"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDate":{"type":"string"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"buyerId":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBuyerId"},"contractId":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"totalGross":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalGross"},"issueDate":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIssueDate"},"version":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","businessKey","status","buyerId","contractId","totalGross","issueDate","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsBillingInvoicesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingInvoicesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingInvoicesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingInvoicesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingInvoicesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId":{"type":"string","format":"uuid"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesPpNumber":{"type":"string"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesIssueDate":{"type":"string"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSalesMonth":{"type":"string"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesPricingBasis":{"type":"string"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNet":{"type":"string","pattern":"^-?\\d+(\\.\\d{1,4})?$"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccount":{"type":"string"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesAmountInWords":{"type":"string"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"type":"string"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"type":"string"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesService":{"type":"string","enum":["Gaz","Abonament","Oplata stala","Oplata zmienna","Inne"]},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTariff":{"type":"string"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnit":{"type":"string","minLength":1},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTariffScope":{"type":"string","enum":["SPRZEDAWCA","OSD"]},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPosition":{"type":"number"},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems":{"type":"object","properties":{"invoiceId":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"ppgId":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"billingPositionId":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"snapshotId":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"service":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesService"},"tariff":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTariff"},"qty":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNet"},"unit":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesUnit"},"unitPrice":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNet"},"net":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNet"},"vatRate":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNet"},"vatAmount":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNet"},"gross":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNet"},"tariffScope":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesTariffScope"},"position":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItemsPropertiesPosition"}},"required":["invoiceId","service","qty","unit","unitPrice","net","vatRate","vatAmount","gross","tariffScope"],"additionalProperties":false},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLines":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLinesItems"},"minItems":1},"DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"sellerId":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"buyerId":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"recipientId":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"contractId":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"ppgId":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"ppNumber":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesPpNumber"},"issueDate":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesIssueDate"},"salesMonth":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSalesMonth"},"periodFrom":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesIssueDate"},"periodTo":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesIssueDate"},"pricingBasis":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesPricingBasis"},"totalNet":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNet"},"totalVat":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNet"},"totalGross":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNet"},"amountDue":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesTotalNet"},"dueDate":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesIssueDate"},"bankAccount":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesBankAccount"},"amountInWords":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesAmountInWords"},"issuedBy":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSellerId"},"validFrom":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesIssueDate"},"validTo":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesIssueDate"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"owner":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesOwner"},"lines":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostRequestBodyContentApplicationJsonSchemaPropertiesLines"}},"required":["buyerId","contractId","issueDate","periodFrom","periodTo","totalNet","totalVat","totalGross","amountDue","validFrom","lines"],"additionalProperties":false},"DocPathsBillingInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsBillingInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsBillingInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsBillingInvoicesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsBillingInvoicesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingInvoicesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingInvoicesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingInvoicesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingInvoicesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingReceivablesGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsBillingReceivablesGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsBillingReceivablesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsBillingReceivablesGetParameters3Schema":{"type":"string","enum":["OTWARTA","CZESCIOWO_SPLACONA","SPLACONA","UMORZONA","SPORNA"]},"DocPathsBillingReceivablesGetParameters4Schema":{"type":"boolean"},"DocPathsBillingReceivablesGetParameters5Schema":{"type":"number"},"DocPathsBillingReceivablesGetParameters6Schema":{"type":"number"},"DocPathsBillingReceivablesGetParameters7Schema":{"type":"string"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceId":{"type":"string","format":"uuid"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAccountId":{"type":"string","format":"uuid"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount":{"type":"string"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAmount":{"type":"string"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"type":"string"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueDate":{"type":"string"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"invoiceId":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceId"},"billingAccountId":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAccountId"},"status":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"amount":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount"},"paidAmount":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAmount"},"currency":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"dueDate":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueDate"},"version":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","invoiceId","billingAccountId","status","amount","paidAmount","currency","dueDate","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsBillingReceivablesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingReceivablesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingReceivablesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingReceivablesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingReceivablesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingRunsGetParameters0Schema":{"type":"string","enum":["ZAPLANOWANY","W_TOKU","ZAKONCZONY","ZAKONCZONY_Z_BLEDAMI","ANULOWANY"]},"DocPathsBillingRunsGetParameters1Schema":{"type":"string"},"DocPathsBillingRunsGetParameters2Schema":{"type":"number"},"DocPathsBillingRunsGetParameters3Schema":{"type":"number"},"DocPathsBillingRunsGetParameters4Schema":{"type":"string"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"type":"string"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriod":{"type":"string"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScopeAnyOf0":{"type":"null"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScopeAnyOf1":{"type":"string"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScope":{"anyOf":[{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScopeAnyOf0"},{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScopeAnyOf1"}]},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalContractsAnyOf0":{"type":"null"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalContractsAnyOf1":{"type":"number"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalContracts":{"anyOf":[{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalContractsAnyOf0"},{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalContractsAnyOf1"}]},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProcessedContractsAnyOf0":{"type":"null"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProcessedContractsAnyOf1":{"type":"number"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProcessedContracts":{"anyOf":[{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProcessedContractsAnyOf0"},{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProcessedContractsAnyOf1"}]},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFailedContractsAnyOf0":{"type":"null"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFailedContractsAnyOf1":{"type":"number"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFailedContracts":{"anyOf":[{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFailedContractsAnyOf0"},{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFailedContractsAnyOf1"}]},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"period":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPeriod"},"scope":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesScope"},"totalContracts":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalContracts"},"processedContracts":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesProcessedContracts"},"failedContracts":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFailedContracts"},"version":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","businessKey","status","period","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsBillingRunsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsBillingRunsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingRunsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingRunsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingRunsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingRunsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingRunsPostRequestBodyContentApplicationJsonSchemaPropertiesPeriod":{"type":"string","pattern":"^\\d{4}-\\d{2}$"},"DocPathsBillingRunsPostRequestBodyContentApplicationJsonSchemaPropertiesScope":{"type":"string"},"DocPathsBillingRunsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string"},"DocPathsBillingRunsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"period":{"$ref":"#/components/schemas/DocPathsBillingRunsPostRequestBodyContentApplicationJsonSchemaPropertiesPeriod"},"scope":{"$ref":"#/components/schemas/DocPathsBillingRunsPostRequestBodyContentApplicationJsonSchemaPropertiesScope"},"validFrom":{"$ref":"#/components/schemas/DocPathsBillingRunsPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"}},"required":["period"],"additionalProperties":false},"DocPathsBillingRunsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsBillingRunsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsBillingRunsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsBillingRunsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsBillingRunsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsBillingRunsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsBillingRunsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsBillingRunsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingRunsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingRunsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingRunsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingRunsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingRunsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingInvoicesIdPdfGetParameters0Schema":{"type":"string"},"DocPathsBillingInvoicesIdPdfGetResponses200ContentApplicationJsonSchema":{"type":"object"},"DocPathsBillingInvoicesIdPdfGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingInvoicesIdPdfGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingInvoicesIdPdfGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsBillingInvoicesIdPdfGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsBillingInvoicesIdPdfGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsBillingInvoicesIdPdfGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsAllocationsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPaymentsAllocationsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPaymentsAllocationsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsPaymentsAllocationsGetParameters3Schema":{"type":"string","enum":["pelna","czesciowa","nadplata"]},"DocPathsPaymentsAllocationsGetParameters4Schema":{"type":"number"},"DocPathsPaymentsAllocationsGetParameters5Schema":{"type":"number"},"DocPathsPaymentsAllocationsGetParameters6Schema":{"type":"string"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentId":{"type":"string","format":"uuid"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceId":{"type":"string","format":"uuid"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivableId":{"type":"string","format":"uuid"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllocatedAmount":{"type":"string"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind":{"type":"string"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllocatedAt":{"type":"string"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"paymentId":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaymentId"},"invoiceId":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceId"},"receivableId":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivableId"},"allocatedAmount":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllocatedAmount"},"kind":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesKind"},"allocatedAt":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAllocatedAt"},"version":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","paymentId","invoiceId","receivableId","allocatedAmount","kind","allocatedAt","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPaymentsAllocationsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsAllocationsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsAllocationsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsAllocationsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsAllocationsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsPaymentsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPaymentsPaymentsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPaymentsPaymentsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsPaymentsPaymentsGetParameters3Schema":{"type":"string","enum":["NOWA","ZAALOKOWANA","NADPLATA","ZWROCONA","DO_RECZNEJ"]},"DocPathsPaymentsPaymentsGetParameters4Schema":{"type":"string","enum":["mt940","online","manual"]},"DocPathsPaymentsPaymentsGetParameters5Schema":{"type":"boolean"},"DocPathsPaymentsPaymentsGetParameters6Schema":{"type":"string"},"DocPathsPaymentsPaymentsGetParameters7Schema":{"type":"string"},"DocPathsPaymentsPaymentsGetParameters8Schema":{"type":"number"},"DocPathsPaymentsPaymentsGetParameters9Schema":{"type":"number"},"DocPathsPaymentsPaymentsGetParameters10Schema":{"type":"string","enum":["paidAt","amount","createdAt","status"]},"DocPathsPaymentsPaymentsGetParameters11Schema":{"type":"string","enum":["asc","desc"]},"DocPathsPaymentsPaymentsGetParameters12Schema":{"type":"string"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"type":"string"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource":{"type":"string"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf0":{"type":"null"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerIdAnyOf1"}]},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf0":{"type":"null"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf1"}]},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount":{"type":"string"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"type":"string"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAt":{"type":"string"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"source":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSource"},"customerId":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId"},"contractId":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"amount":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount"},"currency":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"paidAt":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAt"},"version":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","businessKey","status","source","amount","currency","paidAt","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPaymentsPaymentsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsPaymentsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsPaymentsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsPaymentsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsStatementsImportPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsPaymentsStatementsImportPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsStatementsImportPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsImportPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsStatementsImportPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsStatementsImportPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsImportPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsStatementsGetParameters0Schema":{"type":"string","enum":["IMPORTOWANY","PRZETWORZONY","BLEDNY"]},"DocPathsPaymentsStatementsGetParameters1Schema":{"type":"string"},"DocPathsPaymentsStatementsGetParameters2Schema":{"type":"string"},"DocPathsPaymentsStatementsGetParameters3Schema":{"type":"number"},"DocPathsPaymentsStatementsGetParameters4Schema":{"type":"number"},"DocPathsPaymentsStatementsGetParameters5Schema":{"type":"string"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"type":"string"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatementRef":{"type":"string"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesImportedAt":{"type":"string"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"type":"string"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"statementRef":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatementRef"},"status":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"importedAt":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesImportedAt"},"currency":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"version":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","businessKey","statementRef","status","importedAt","currency","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPaymentsStatementsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsStatementsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsStatementsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsStatementsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsStatementsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsVirtualAccountsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsPaymentsVirtualAccountsGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsPaymentsVirtualAccountsGetParameters2Schema":{"type":"boolean"},"DocPathsPaymentsVirtualAccountsGetParameters3Schema":{"type":"number"},"DocPathsPaymentsVirtualAccountsGetParameters4Schema":{"type":"number"},"DocPathsPaymentsVirtualAccountsGetParameters5Schema":{"type":"string"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf0":{"type":"null"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractIdAnyOf1"}]},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0":{"type":"null"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1":{"type":"string"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf0"},{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabelAnyOf1"}]},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"customerId":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId"},"contractId":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"label":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"isActive":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"createdAt":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","customerId","isActive","createdAt","updatedAt"],"additionalProperties":false},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsPaymentsVirtualAccountsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsVirtualAccountsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsVirtualAccountsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsVirtualAccountsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsVirtualAccountsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsPaymentsVirtualAccountsPostRequestBodyContentApplicationJsonSchemaPropertiesAccountNumber":{"type":"string","minLength":1},"DocPathsPaymentsVirtualAccountsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string"},"DocPathsPaymentsVirtualAccountsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"customerId":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"contractId":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"ppgId":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostRequestBodyContentApplicationJsonSchemaPropertiesCustomerId"},"accountNumber":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostRequestBodyContentApplicationJsonSchemaPropertiesAccountNumber"},"label":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"}},"required":["customerId","accountNumber"],"additionalProperties":false},"DocPathsPaymentsVirtualAccountsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsPaymentsVirtualAccountsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsPaymentsVirtualAccountsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsPaymentsVirtualAccountsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsPaymentsVirtualAccountsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsVirtualAccountsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsVirtualAccountsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsVirtualAccountsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsVirtualAccountsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsPaymentsIdMatchPostParameters0Schema":{"type":"string"},"DocPathsPaymentsPaymentsIdMatchPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsPaymentsPaymentsIdMatchPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsPaymentsIdMatchPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdMatchPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsPaymentsIdMatchPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsPaymentsIdMatchPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdMatchPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsPaymentsIdUnmatchPostParameters0Schema":{"type":"string"},"DocPathsPaymentsPaymentsIdUnmatchPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsPaymentsPaymentsIdUnmatchPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsPaymentsIdUnmatchPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdUnmatchPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsPaymentsPaymentsIdUnmatchPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsPaymentsPaymentsIdUnmatchPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsPaymentsPaymentsIdUnmatchPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesGetParameters0Schema":{"type":"number"},"DocPathsSwitchingCasesGetParameters1Schema":{"type":"number"},"DocPathsSwitchingCasesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesGetParameters5Schema":{"type":"string","enum":["SWITCHING_ROBOCZY","GOTOWY_DO_ZGŁOSZENIA","ZGŁOSZENIE_PRZYGOTOWANE","WYSŁANY_DO_OSD","ZAAKCEPTOWANY","ODRZUCONY","AKTYWNY","REZYGNACJA","ANULACJA_POTWIERDZONA","ANULOWANY"]},"DocPathsSwitchingCasesGetParameters6Schema":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesGetParameters7Schema":{"type":"string"},"DocPathsSwitchingCasesGetParameters8Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSwitchingCasesGetParameters9Schema":{"type":"string"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"type":"string"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPpgId":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageIdAnyOf0":{"type":"null"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageIdAnyOf1"}]},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlannedChangeDate":{"type":"string"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEffectiveChangeDateAnyOf0":{"type":"null"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEffectiveChangeDateAnyOf1":{"type":"string"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEffectiveChangeDate":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEffectiveChangeDateAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEffectiveChangeDateAnyOf1"}]},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"ppgId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPpgId"},"contractId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"customerId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId"},"packageId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageId"},"status":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"plannedChangeDate":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPlannedChangeDate"},"effectiveChangeDate":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEffectiveChangeDate"},"version":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","businessKey","ppgId","contractId","customerId","status","plannedChangeDate","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsSwitchingCasesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","minLength":1,"maxLength":64},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPpgId":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPackageIdAnyOf0":{"type":"null"},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPackageId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPackageIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPpgId"}]},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPlannedChangeDate":{"type":"string"},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0":{"type":"null"},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPlannedChangeDate"}]},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0":{"type":"null"},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1":{"type":"string","maxLength":64},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1"}]},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0":{"type":"null"},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1":{"type":"string","maxLength":128},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1"}]},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["SWITCHING_ROBOCZY","GOTOWY_DO_ZGŁOSZENIA","ZGŁOSZENIE_PRZYGOTOWANE","WYSŁANY_DO_OSD","ZAAKCEPTOWANY","ODRZUCONY","AKTYWNY","REZYGNACJA","ANULACJA_POTWIERDZONA","ANULOWANY"]},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"SWITCHING_ROBOCZY"},"DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"businessKey":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"ppgId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"contractId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"customerId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"packageId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPackageId"},"poaId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"previousSupplierId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"osdId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"plannedChangeDate":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPlannedChangeDate"},"validFrom":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPlannedChangeDate"},"validTo":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"owner":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesOwner"},"status":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"}},"required":["ppgId","contractId","customerId","poaId","previousSupplierId","osdId","plannedChangeDate","validFrom"],"additionalProperties":false},"DocPathsSwitchingCasesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSwitchingCasesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSwitchingCasesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSwitchingCasesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","minLength":1,"maxLength":64},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPpgId":{"type":"string","format":"uuid"},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPackageIdAnyOf0":{"type":"null"},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPackageId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPackageIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPpgId"}]},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPlannedChangeDate":{"type":"string"},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0":{"type":"null"},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPlannedChangeDate"}]},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0":{"type":"null"},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1":{"type":"string","maxLength":64},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1"}]},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0":{"type":"null"},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1":{"type":"string","maxLength":128},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1"}]},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["SWITCHING_ROBOCZY","GOTOWY_DO_ZGŁOSZENIA","ZGŁOSZENIE_PRZYGOTOWANE","WYSŁANY_DO_OSD","ZAAKCEPTOWANY","ODRZUCONY","AKTYWNY","REZYGNACJA","ANULACJA_POTWIERDZONA","ANULOWANY"]},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"SWITCHING_ROBOCZY"},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesVersion":{"type":"number"},"DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"businessKey":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"ppgId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"contractId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"customerId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"packageId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPackageId"},"poaId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"previousSupplierId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"osdId":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"plannedChangeDate":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPlannedChangeDate"},"validFrom":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPlannedChangeDate"},"validTo":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"owner":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesOwner"},"status":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"id":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPpgId"},"version":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutRequestBodyContentApplicationJsonSchemaPropertiesVersion"}},"required":["id"],"additionalProperties":false},"DocPathsSwitchingCasesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSwitchingCasesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSwitchingCasesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSwitchingCasesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSwitchingCasesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSwitchingCasesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingPackagesGetParameters0Schema":{"type":"number"},"DocPathsSwitchingPackagesGetParameters1Schema":{"type":"number"},"DocPathsSwitchingPackagesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSwitchingPackagesGetParameters3Schema":{"type":"string","enum":["PAKIET_ROBOCZY","WYSŁANY_DO_OSD","ZAAKCEPTOWANY","ODRZUCONY","CZĘŚCIOWO_ZAAKCEPTOWANY","ANULOWANY"]},"DocPathsSwitchingPackagesGetParameters4Schema":{"type":"string"},"DocPathsSwitchingPackagesGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSwitchingPackagesGetParameters6Schema":{"type":"string"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"type":"string"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalPpgCount":{"type":"number"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAcceptedPpgCount":{"type":"number"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRejectedPpgCount":{"type":"number"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"contractId":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContractId"},"status":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"totalPpgCount":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalPpgCount"},"acceptedPpgCount":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAcceptedPpgCount"},"rejectedPpgCount":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRejectedPpgCount"},"version":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","businessKey","contractId","status","totalPpgCount","acceptedPpgCount","rejectedPpgCount","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsSwitchingPackagesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingPackagesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingPackagesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingPackagesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","minLength":1,"maxLength":64},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string"},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0":{"type":"null"},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"}]},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0":{"type":"null"},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1":{"type":"string","maxLength":64},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1"}]},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0":{"type":"null"},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1":{"type":"string","maxLength":128},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1"}]},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["PAKIET_ROBOCZY","WYSŁANY_DO_OSD","ZAAKCEPTOWANY","ODRZUCONY","CZĘŚCIOWO_ZAAKCEPTOWANY","ANULOWANY"]},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"PAKIET_ROBOCZY"},"DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"businessKey":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"contractId":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"customerId":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"osdId":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"poaId":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"validFrom":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"owner":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesOwner"},"status":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostRequestBodyContentApplicationJsonSchemaPropertiesStatus"}},"required":["contractId","customerId","osdId","poaId","validFrom"],"additionalProperties":false},"DocPathsSwitchingPackagesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsSwitchingPackagesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSwitchingPackagesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsSwitchingPackagesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsSwitchingPackagesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingPackagesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingPackagesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingPackagesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey":{"type":"string","minLength":1,"maxLength":64},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesContractId":{"type":"string","format":"uuid"},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom":{"type":"string"},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0":{"type":"null"},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesValidToAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"}]},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0":{"type":"null"},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1":{"type":"string","maxLength":64},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystemAnyOf1"}]},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0":{"type":"null"},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1":{"type":"string","maxLength":128},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesOwner":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesOwnerAnyOf1"}]},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0":{"type":"string","enum":["PAKIET_ROBOCZY","WYSŁANY_DO_OSD","ZAAKCEPTOWANY","ODRZUCONY","CZĘŚCIOWO_ZAAKCEPTOWANY","ANULOWANY"]},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"allOf":[{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesStatusAllOf0"}],"default":"PAKIET_ROBOCZY"},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesVersion":{"type":"number"},"DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"businessKey":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesBusinessKey"},"contractId":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"customerId":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"osdId":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"poaId":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"validFrom":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesValidFrom"},"validTo":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesValidTo"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesSourceSystem"},"owner":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesOwner"},"status":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"id":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesContractId"},"version":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutRequestBodyContentApplicationJsonSchemaPropertiesVersion"}},"required":["id"],"additionalProperties":false},"DocPathsSwitchingPackagesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSwitchingPackagesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSwitchingPackagesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingPackagesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingPackagesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingPackagesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingPackagesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsSwitchingPackagesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsSwitchingPackagesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingPackagesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingPackagesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingPackagesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingPackagesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingRequestsGetParameters0Schema":{"type":"number"},"DocPathsSwitchingRequestsGetParameters1Schema":{"type":"number"},"DocPathsSwitchingRequestsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSwitchingRequestsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsSwitchingRequestsGetParameters4Schema":{"type":"string","enum":["PRZYGOTOWANY","WYSŁANY","POTWIERDZONY","ODRZUCONY","ANULOWANY"]},"DocPathsSwitchingRequestsGetParameters5Schema":{"type":"string"},"DocPathsSwitchingRequestsGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSwitchingRequestsGetParameters7Schema":{"type":"string"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSwitchingCaseId":{"type":"string","format":"uuid"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageIdAnyOf0":{"type":"null"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageIdAnyOf1"}]},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPpgId":{"type":"string","format":"uuid"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdId":{"type":"string","format":"uuid"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdReferenceNumberAnyOf0":{"type":"null"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdReferenceNumberAnyOf1":{"type":"string"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdReferenceNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdReferenceNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdReferenceNumberAnyOf1"}]},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf0":{"type":"null"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf1":{"type":"string"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf1"}]},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfirmedAtAnyOf0":{"type":"null"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfirmedAtAnyOf1":{"type":"string"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfirmedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfirmedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfirmedAtAnyOf1"}]},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"switchingCaseId":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSwitchingCaseId"},"packageId":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPackageId"},"ppgId":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPpgId"},"osdId":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdId"},"status":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"osdReferenceNumber":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesOsdReferenceNumber"},"sentAt":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAt"},"confirmedAt":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConfirmedAt"},"version":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","switchingCaseId","ppgId","osdId","status","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsSwitchingRequestsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingRequestsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingRequestsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingRequestsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingRequestsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingSlaTrackersGetParameters0Schema":{"type":"number"},"DocPathsSwitchingSlaTrackersGetParameters1Schema":{"type":"number"},"DocPathsSwitchingSlaTrackersGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsSwitchingSlaTrackersGetParameters3Schema":{"type":"string","enum":["OK","ZAGROZONE","PRZEKROCZONE"]},"DocPathsSwitchingSlaTrackersGetParameters4Schema":{"type":"string"},"DocPathsSwitchingSlaTrackersGetParameters5Schema":{"type":"string","enum":["asc","desc"]},"DocPathsSwitchingSlaTrackersGetParameters6Schema":{"type":"string"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSwitchingCaseId":{"type":"string","format":"uuid"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStage":{"type":"string"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeadlineAt":{"type":"string"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarningAt":{"type":"string"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThreatLevel":{"type":"string"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBreachedAtAnyOf0":{"type":"null"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBreachedAtAnyOf1":{"type":"string"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBreachedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBreachedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBreachedAtAnyOf1"}]},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEscalatedAtAnyOf0":{"type":"null"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEscalatedAtAnyOf1":{"type":"string"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEscalatedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEscalatedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEscalatedAtAnyOf1"}]},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"switchingCaseId":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSwitchingCaseId"},"stage":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStage"},"deadlineAt":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDeadlineAt"},"warningAt":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesWarningAt"},"threatLevel":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesThreatLevel"},"breachedAt":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBreachedAt"},"escalatedAt":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesEscalatedAt"},"createdAt":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","switchingCaseId","stage","deadlineAt","warningAt","threatLevel","createdAt","updatedAt"],"additionalProperties":false},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsSwitchingSlaTrackersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingSlaTrackersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingSlaTrackersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingSlaTrackersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingSlaTrackersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesIdCancelPostParameters0Schema":{"type":"string"},"DocPathsSwitchingCasesIdCancelPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsSwitchingCasesIdCancelPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesIdCancelPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdCancelPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesIdCancelPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesIdCancelPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdCancelPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesIdResumePostParameters0Schema":{"type":"string"},"DocPathsSwitchingCasesIdResumePostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsSwitchingCasesIdResumePostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesIdResumePostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdResumePostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesIdResumePostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesIdResumePostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdResumePostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesIdSubmitPostParameters0Schema":{"type":"string"},"DocPathsSwitchingCasesIdSubmitPostResponses201ContentApplicationJsonSchema":{"type":"object"},"DocPathsSwitchingCasesIdSubmitPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesIdSubmitPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdSubmitPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsSwitchingCasesIdSubmitPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsSwitchingCasesIdSubmitPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsSwitchingCasesIdSubmitPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankBatchesGetParameters0Schema":{"type":"number"},"DocPathsConnectorBankBatchesGetParameters1Schema":{"type":"number"},"DocPathsConnectorBankBatchesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsConnectorBankBatchesGetParameters3Schema":{"type":"string","enum":["PENDING","IN_PROGRESS","COMPLETED","FAILED","PARTIAL"]},"DocPathsConnectorBankBatchesGetParameters4Schema":{"type":"string"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf0":{"type":"null"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf1":{"type":"string"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf1"}]},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId":{"type":"string","format":"uuid"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAtAnyOf0":{"type":"null"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAtAnyOf1":{"type":"string"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAtAnyOf1"}]},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf0":{"type":"null"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf1":{"type":"string"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf1"}]},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalFiles":{"type":"number"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParsedOk":{"type":"number"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParseErrors":{"type":"number"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatementsDispatched":{"type":"number"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0":{"type":"null"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1":{"type":"string"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1"}]},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"connectionId":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId"},"pullStartedAt":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullStartedAt"},"completedAt":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAt"},"totalFiles":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalFiles"},"parsedOk":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParsedOk"},"parseErrors":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesParseErrors"},"statementsDispatched":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatementsDispatched"},"errorDetail":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail"},"version":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","status","connectionId","totalFiles","parsedOk","parseErrors","statementsDispatched","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsConnectorBankBatchesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankBatchesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankBatchesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankBatchesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankBatchesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankConnectionsGetParameters0Schema":{"type":"number"},"DocPathsConnectorBankConnectionsGetParameters1Schema":{"type":"number"},"DocPathsConnectorBankConnectionsGetParameters2Schema":{"type":"string"},"DocPathsConnectorBankConnectionsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsConnectorBankConnectionsGetParameters4Schema":{"type":"boolean"},"DocPathsConnectorBankConnectionsGetParameters5Schema":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHost":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPort":{"type":"number"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirIn":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirArchive":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCronAnyOf0":{"type":"null"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCronAnyOf1":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCron":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCronAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCronAnyOf1"}]},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"host":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesHost"},"port":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPort"},"dirIn":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirIn"},"dirArchive":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDirArchive"},"pullScheduleCron":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPullScheduleCron"},"isActive":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"status":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"version":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","code","name","host","port","dirIn","dirArchive","isActive","status","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsConnectorBankConnectionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankConnectionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankConnectionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":100},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesHost":{"type":"string","minLength":1},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPortAllOf0":{"type":"number"},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPort":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPortAllOf0"}],"default":22},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirInAllOf0":{"type":"string"},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirIn":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirInAllOf0"}],"default":"in/"},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirArchiveAllOf0":{"type":"string"},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirArchive":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirArchiveAllOf0"}],"default":"archive/"},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPullScheduleCron":{"type":"string"},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"host":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesHost"},"port":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPort"},"dirIn":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirIn"},"dirArchive":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesDirArchive"},"pullScheduleCron":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesPullScheduleCron"},"isActive":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["code","name","host"],"additionalProperties":false},"DocPathsConnectorBankConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsConnectorBankConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsConnectorBankConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsConnectorBankConnectionsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsConnectorBankConnectionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankConnectionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankConnectionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankConnectionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":100},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesHost":{"type":"string","minLength":1},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPortAllOf0":{"type":"number"},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPort":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPortAllOf0"}],"default":22},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirInAllOf0":{"type":"string"},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirIn":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirInAllOf0"}],"default":"in/"},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirArchiveAllOf0":{"type":"string"},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirArchive":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirArchiveAllOf0"}],"default":"archive/"},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPullScheduleCron":{"type":"string"},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"host":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesHost"},"port":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPort"},"dirIn":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirIn"},"dirArchive":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesDirArchive"},"pullScheduleCron":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesPullScheduleCron"},"isActive":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"additionalProperties":false},"DocPathsConnectorBankConnectionsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsConnectorBankConnectionsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsConnectorBankConnectionsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankConnectionsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankConnectionsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankConnectionsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankConnectionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsConnectorBankConnectionsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsConnectorBankConnectionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankConnectionsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankConnectionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankConnectionsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankFilesGetParameters0Schema":{"type":"number"},"DocPathsConnectorBankFilesGetParameters1Schema":{"type":"number"},"DocPathsConnectorBankFilesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsConnectorBankFilesGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsConnectorBankFilesGetParameters4Schema":{"type":"string","enum":["POBRANY","SPARSOWANY","BLAD_PARSOWANIA","ZARCHIWIZOWANY"]},"DocPathsConnectorBankFilesGetParameters5Schema":{"type":"string"},"DocPathsConnectorBankFilesGetParameters6Schema":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId":{"type":"string","format":"uuid"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf0":{"type":"null"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf1"}]},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFilename":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentHash":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatementRefAnyOf0":{"type":"null"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatementRefAnyOf1":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatementRef":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatementRefAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatementRefAnyOf1"}]},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinesCountAnyOf0":{"type":"null"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinesCountAnyOf1":{"type":"number"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinesCount":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinesCountAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinesCountAnyOf1"}]},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePathAnyOf0":{"type":"null"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePathAnyOf1":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePath":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePathAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePathAnyOf1"}]},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytesAnyOf0":{"type":"null"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytesAnyOf1":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytesAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytesAnyOf1"}]},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0":{"type":"null"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1"}]},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystemAnyOf0":{"type":"null"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystemAnyOf1":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystem":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystemAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystemAnyOf1"}]},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceTimestampAnyOf0":{"type":"null"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceTimestampAnyOf1":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceTimestamp":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceTimestampAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceTimestampAnyOf1"}]},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"businessKey":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"connectionId":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId"},"batchId":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchId"},"filename":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesFilename"},"contentHash":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesContentHash"},"statementRef":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatementRef"},"linesCount":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLinesCount"},"archivePath":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesArchivePath"},"sizeBytes":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSizeBytes"},"errorDetail":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail"},"sourceSystem":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceSystem"},"sourceTimestamp":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSourceTimestamp"},"version":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","businessKey","status","connectionId","filename","contentHash","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsConnectorBankFilesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankFilesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankFilesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankFilesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankFilesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankConnectionsIdPullPostParameters0Schema":{"type":"string"},"DocPathsConnectorBankConnectionsIdPullPostRequestBodyContentApplicationJsonSchemaPropertiesDryRunAllOf0":{"type":"boolean"},"DocPathsConnectorBankConnectionsIdPullPostRequestBodyContentApplicationJsonSchemaPropertiesDryRun":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostRequestBodyContentApplicationJsonSchemaPropertiesDryRunAllOf0"}],"default":false},"DocPathsConnectorBankConnectionsIdPullPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"dryRun":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostRequestBodyContentApplicationJsonSchemaPropertiesDryRun"}},"additionalProperties":false},"DocPathsConnectorBankConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesMessage":{"type":"string"},"DocPathsConnectorBankConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesConnectionId":{"type":"string"},"DocPathsConnectorBankConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesDryRun":{"type":"boolean"},"DocPathsConnectorBankConnectionsIdPullPostResponses202ContentApplicationJsonSchema":{"type":"object","properties":{"message":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesMessage"},"connectionId":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesConnectionId"},"dryRun":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostResponses202ContentApplicationJsonSchemaPropertiesDryRun"}},"required":["message","connectionId","dryRun"],"additionalProperties":false},"DocPathsConnectorBankConnectionsIdPullPostResponses400ContentApplicationJsonSchema":{"type":"object"},"DocPathsConnectorBankConnectionsIdPullPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankConnectionsIdPullPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankConnectionsIdPullPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorBankConnectionsIdPullPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorBankConnectionsIdPullPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorBankConnectionsIdPullPostResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsConnectorAccountingConnectionsGetParameters0Schema":{"type":"number"},"DocPathsConnectorAccountingConnectionsGetParameters1Schema":{"type":"number"},"DocPathsConnectorAccountingConnectionsGetParameters2Schema":{"type":"string"},"DocPathsConnectorAccountingConnectionsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingConnectionsGetParameters4Schema":{"type":"boolean"},"DocPathsConnectorAccountingConnectionsGetParameters5Schema":{"type":"string"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode":{"type":"string"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSystemType":{"type":"string"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseUrlAnyOf0":{"type":"null"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseUrlAnyOf1":{"type":"string"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseUrlAnyOf1"}]},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportScheduleCronAnyOf0":{"type":"null"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportScheduleCronAnyOf1":{"type":"string"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportScheduleCron":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportScheduleCronAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportScheduleCronAnyOf1"}]},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"systemType":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSystemType"},"baseUrl":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBaseUrl"},"exportScheduleCron":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportScheduleCron"},"isActive":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"version":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","code","name","systemType","isActive","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingConnectionsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingConnectionsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":100},"DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesSystemTypeAllOf0":{"type":"string","minLength":1,"maxLength":100},"DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesSystemType":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesSystemTypeAllOf0"}],"default":"CUSTOM"},"DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesBaseUrl":{"type":"string","format":"uri"},"DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesExportScheduleCron":{"type":"string"},"DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"systemType":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesSystemType"},"baseUrl":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesBaseUrl"},"exportScheduleCron":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesExportScheduleCron"},"isActive":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"required":["code","name"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsConnectorAccountingConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsConnectorAccountingConnectionsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingConnectionsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingConnectionsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesCode":{"type":"string","minLength":1,"maxLength":100},"DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesSystemTypeAllOf0":{"type":"string","minLength":1,"maxLength":100},"DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesSystemType":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesSystemTypeAllOf0"}],"default":"CUSTOM"},"DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseUrl":{"type":"string","format":"uri"},"DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesExportScheduleCron":{"type":"string"},"DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"code":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"systemType":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesSystemType"},"baseUrl":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesBaseUrl"},"exportScheduleCron":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesExportScheduleCron"},"isActive":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"}},"additionalProperties":false},"DocPathsConnectorAccountingConnectionsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsConnectorAccountingConnectionsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingConnectionsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingConnectionsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsConnectorAccountingConnectionsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingConnectionsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingConnectionsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingExportBatchesGetParameters0Schema":{"type":"number"},"DocPathsConnectorAccountingExportBatchesGetParameters1Schema":{"type":"number"},"DocPathsConnectorAccountingExportBatchesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingExportBatchesGetParameters3Schema":{"type":"string","enum":["PENDING","IN_PROGRESS","COMPLETED","FAILED","PARTIAL"]},"DocPathsConnectorAccountingExportBatchesGetParameters4Schema":{"type":"string"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf0":{"type":"null"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf1":{"type":"string"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKeyAnyOf1"}]},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportStartedAtAnyOf0":{"type":"null"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportStartedAtAnyOf1":{"type":"string"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportStartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportStartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportStartedAtAnyOf1"}]},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf0":{"type":"null"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf1":{"type":"string"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAtAnyOf1"}]},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalPostings":{"type":"number"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentOk":{"type":"number"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSendErrors":{"type":"number"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkipped":{"type":"number"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0":{"type":"null"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1":{"type":"string"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1"}]},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"connectionId":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId"},"businessKey":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"exportStartedAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExportStartedAt"},"completedAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCompletedAt"},"totalPostings":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTotalPostings"},"sentOk":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentOk"},"sendErrors":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSendErrors"},"skipped":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSkipped"},"errorDetail":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail"},"version":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","connectionId","status","totalPostings","sentOk","sendErrors","skipped","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsConnectorAccountingExportBatchesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingExportBatchesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingExportBatchesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingExportBatchesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingPostingLogsGetParameters0Schema":{"type":"number"},"DocPathsConnectorAccountingPostingLogsGetParameters1Schema":{"type":"number"},"DocPathsConnectorAccountingPostingLogsGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingPostingLogsGetParameters3Schema":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingPostingLogsGetParameters4Schema":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingPostingLogsGetParameters5Schema":{"type":"string","enum":["MOCKED","PENDING","SENT","FAILED","SKIPPED"]},"DocPathsConnectorAccountingPostingLogsGetParameters6Schema":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetParameters7Schema":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetParameters8Schema":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceId":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceNumberAnyOf0":{"type":"null"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceNumberAnyOf1":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceNumber":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceNumberAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceNumberAnyOf1"}]},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAccountingPeriod":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf0":{"type":"null"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchIdAnyOf1"}]},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalRefAnyOf0":{"type":"null"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalRefAnyOf1":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalRef":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalRefAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalRefAnyOf1"}]},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf0":{"type":"null"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf1":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf1"}]},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0":{"type":"null"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetailAnyOf1"}]},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRetryCount":{"type":"number"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdempotencyKey":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"connectionId":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesConnectionId"},"invoiceId":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceId"},"invoiceNumber":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceNumber"},"accountingPeriod":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAccountingPeriod"},"status":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"batchId":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBatchId"},"externalRef":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesExternalRef"},"sentAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAt"},"errorDetail":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesErrorDetail"},"retryCount":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesRetryCount"},"idempotencyKey":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIdempotencyKey"},"version":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","connectionId","invoiceId","accountingPeriod","status","retryCount","idempotencyKey","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsConnectorAccountingPostingLogsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingPostingLogsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingPostingLogsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingPostingLogsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsIdGetParameters0Schema":{"type":"string"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesCode":{"type":"string"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesName":{"type":"string"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesSystemType":{"type":"string"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesBaseUrlAnyOf0":{"type":"null"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesBaseUrlAnyOf1":{"type":"string"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesBaseUrl":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesBaseUrlAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesBaseUrlAnyOf1"}]},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesExportScheduleCronAnyOf0":{"type":"null"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesExportScheduleCronAnyOf1":{"type":"string"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesExportScheduleCron":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesExportScheduleCronAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesExportScheduleCronAnyOf1"}]},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesVersion":{"type":"number"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"type":"string"},"DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesId"},"code":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesCode"},"name":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesName"},"systemType":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesSystemType"},"baseUrl":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesBaseUrl"},"exportScheduleCron":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesExportScheduleCron"},"isActive":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesIsActive"},"version":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","code","name","systemType","isActive","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingConnectionsIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingConnectionsIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingConnectionsIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingConnectionsIdGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsConnectorAccountingExportBatchesIdGetParameters0Schema":{"type":"string"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesId":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesConnectionId":{"type":"string","format":"uuid"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf0":{"type":"null"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf1":{"type":"string"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesBusinessKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesBusinessKeyAnyOf1"}]},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesStatus":{"type":"string"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesExportStartedAtAnyOf0":{"type":"null"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesExportStartedAtAnyOf1":{"type":"string"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesExportStartedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesExportStartedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesExportStartedAtAnyOf1"}]},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompletedAtAnyOf0":{"type":"null"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompletedAtAnyOf1":{"type":"string"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompletedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompletedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompletedAtAnyOf1"}]},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesTotalPostings":{"type":"number"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesSentOk":{"type":"number"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesSendErrors":{"type":"number"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesSkipped":{"type":"number"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesErrorDetailAnyOf0":{"type":"null"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesErrorDetailAnyOf1":{"type":"string"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesErrorDetail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesErrorDetailAnyOf0"},{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesErrorDetailAnyOf1"}]},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesVersion":{"type":"number"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt":{"type":"string"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt":{"type":"string"},"DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesId"},"connectionId":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesConnectionId"},"businessKey":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesBusinessKey"},"status":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesStatus"},"exportStartedAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesExportStartedAt"},"completedAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesCompletedAt"},"totalPostings":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesTotalPostings"},"sentOk":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesSentOk"},"sendErrors":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesSendErrors"},"skipped":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesSkipped"},"errorDetail":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesErrorDetail"},"version":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses200ContentApplicationJsonSchemaPropertiesUpdatedAt"}},"required":["id","connectionId","status","totalPostings","sentOk","sendErrors","skipped","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsConnectorAccountingExportBatchesIdGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingExportBatchesIdGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingExportBatchesIdGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsConnectorAccountingExportBatchesIdGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsConnectorAccountingExportBatchesIdGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsConnectorAccountingExportBatchesIdGetResponses404ContentApplicationJsonSchema":{"type":"object"},"DocPathsDunningCasesGetParameters0Schema":{"type":"string","enum":["OTWARTA","W_TOKU","ESKALOWANA","ZAWIESZONA","ZAMKNIETA","UMORZONA"]},"DocPathsDunningCasesGetParameters1Schema":{"type":"string","format":"uuid"},"DocPathsDunningCasesGetParameters2Schema":{"type":"string","format":"uuid"},"DocPathsDunningCasesGetParameters3Schema":{"type":"number"},"DocPathsDunningCasesGetParameters4Schema":{"type":"number"},"DocPathsDunningCasesGetParameters5Schema":{"type":"string","enum":["createdAt","updatedAt","dueDate","status"]},"DocPathsDunningCasesGetParameters6Schema":{"type":"string","enum":["asc","desc"]},"DocPathsDunningCasesGetParameters7Schema":{"type":"string"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivableId":{"type":"string","format":"uuid"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceId":{"type":"string","format":"uuid"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAccountId":{"type":"string","format":"uuid"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId":{"type":"string","format":"uuid"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount":{"type":"string"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAmount":{"type":"string"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"type":"string"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueDate":{"type":"string"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDetectedAt":{"type":"string"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"receivableId":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesReceivableId"},"invoiceId":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesInvoiceId"},"billingAccountId":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesBillingAccountId"},"customerId":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCustomerId"},"status":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"amount":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount"},"paidAmount":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPaidAmount"},"currency":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"dueDate":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDueDate"},"detectedAt":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDetectedAt"},"version":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","receivableId","invoiceId","billingAccountId","customerId","status","amount","paidAmount","currency","dueDate","detectedAt","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsDunningCasesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsDunningCasesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningCasesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningCasesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningCasesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningCasesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesReceivableId":{"type":"string","format":"uuid"},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesAmount":{"type":"string","pattern":"^\\d+(\\.\\d{1,2})?$"},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPaidAmountAllOf0":{"type":"string","pattern":"^\\d+(\\.\\d{1,2})?$"},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPaidAmount":{"allOf":[{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPaidAmountAllOf0"}],"default":"0"},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0":{"type":"string"},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency":{"allOf":[{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0"}],"default":"PLN"},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesDueDate":{"type":"string"},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPolicyIdAnyOf0":{"type":"null"},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPolicyId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPolicyIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesReceivableId"}]},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"receivableId":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesReceivableId"},"invoiceId":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesReceivableId"},"billingAccountId":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesReceivableId"},"customerId":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesReceivableId"},"amount":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesAmount"},"paidAmount":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPaidAmount"},"currency":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency"},"dueDate":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesDueDate"},"detectedAt":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesDueDate"},"policyId":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesPolicyId"},"notes":{"$ref":"#/components/schemas/DocPathsDunningCasesPostRequestBodyContentApplicationJsonSchemaPropertiesNotes"}},"required":["receivableId","invoiceId","billingAccountId","customerId","amount","dueDate","detectedAt"],"additionalProperties":false},"DocPathsDunningCasesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsDunningCasesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDunningCasesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningCasesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningCasesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsDunningCasesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDunningCasesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsDunningCasesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningCasesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningCasesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningCasesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningCasesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningCasesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["OTWARTA","W_TOKU","ESKALOWANA","ZAWIESZONA","ZAMKNIETA","UMORZONA"]},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPolicyIdAnyOf0":{"type":"null"},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPolicyIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPolicyId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPolicyIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPolicyIdAnyOf1"}]},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrentLevelIdAnyOf0":{"type":"null"},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrentLevelId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrentLevelIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPolicyIdAnyOf1"}]},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesWorkflowTaskIdAnyOf0":{"type":"null"},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesWorkflowTaskId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesWorkflowTaskIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPolicyIdAnyOf1"}]},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0":{"type":"null"},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1":{"type":"string","maxLength":2000},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesNotes":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesNotesAnyOf1"}]},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesClosedReasonAnyOf0":{"type":"null"},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesClosedReasonAnyOf1":{"type":"string","maxLength":500},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesClosedReason":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesClosedReasonAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesClosedReasonAnyOf1"}]},"DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"policyId":{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesPolicyId"},"currentLevelId":{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesCurrentLevelId"},"workflowTaskId":{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesWorkflowTaskId"},"notes":{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesNotes"},"closedReason":{"$ref":"#/components/schemas/DocPathsDunningCasesPutRequestBodyContentApplicationJsonSchemaPropertiesClosedReason"}},"additionalProperties":false},"DocPathsDunningCasesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDunningCasesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDunningCasesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDunningCasesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningCasesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningCasesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningCasesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningCasesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningCasesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningCasesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDunningCasesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDunningCasesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDunningCasesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningCasesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningCasesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningCasesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningCasesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningCasesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLettersGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDunningLettersGetParameters1Schema":{"type":"string","enum":["ROBOCZE","WYGENEROWANE","WYSLANE","POTWIERDZONE","BLAD"]},"DocPathsDunningLettersGetParameters2Schema":{"type":"number"},"DocPathsDunningLettersGetParameters3Schema":{"type":"number"},"DocPathsDunningLettersGetParameters4Schema":{"type":"string"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCaseId":{"type":"string","format":"uuid"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStepIdAnyOf0":{"type":"null"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStepIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStepId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStepIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStepIdAnyOf1"}]},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus":{"type":"string"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelAnyOf0":{"type":"null"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelAnyOf1":{"type":"string"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannelAnyOf1"}]},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount":{"type":"string"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency":{"type":"string"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf0":{"type":"null"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf1":{"type":"string"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAtAnyOf1"}]},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"caseId":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCaseId"},"stepId":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStepId"},"status":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesStatus"},"channel":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesChannel"},"amount":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAmount"},"currency":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCurrency"},"sentAt":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSentAt"},"version":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","caseId","status","amount","currency","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsDunningLettersGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsDunningLettersGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLettersGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLettersGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLettersGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLettersGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesCaseId":{"type":"string","format":"uuid"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesStepIdAnyOf0":{"type":"null"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesStepId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesStepIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesCaseId"}]},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesTemplateIdAnyOf0":{"type":"null"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesTemplateId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesTemplateIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesCaseId"}]},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesChannelAnyOf0":{"type":"null"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesChannelAnyOf1":{"type":"string","enum":["EMAIL","POCZTA","EBOK","WEWNETRZNY"]},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesChannel":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesChannelAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesChannelAnyOf1"}]},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientNameAnyOf0":{"type":"null"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientNameAnyOf1":{"type":"string","maxLength":255},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientName":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientNameAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientNameAnyOf1"}]},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientAddressAnyOf0":{"type":"null"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientAddressAnyOf1":{"type":"string","maxLength":500},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientAddress":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientAddressAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientAddressAnyOf1"}]},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmailAnyOf0":{"type":"null"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmailAnyOf1":{"type":"string","format":"email"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmailAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmailAnyOf1"}]},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf0":{"type":"null"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf1":{"type":"string","maxLength":20},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhone":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhoneAnyOf1"}]},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesAmount":{"type":"string","pattern":"^\\d+(\\.\\d{1,2})?$"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0":{"type":"string"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency":{"allOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesCurrencyAllOf0"}],"default":"PLN"},"DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"caseId":{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesCaseId"},"stepId":{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesStepId"},"templateId":{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesTemplateId"},"channel":{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesChannel"},"recipientName":{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientName"},"recipientAddress":{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesRecipientAddress"},"contactEmail":{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactEmail"},"contactPhone":{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesContactPhone"},"amount":{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesAmount"},"currency":{"$ref":"#/components/schemas/DocPathsDunningLettersPostRequestBodyContentApplicationJsonSchemaPropertiesCurrency"}},"required":["caseId","amount"],"additionalProperties":false},"DocPathsDunningLettersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsDunningLettersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDunningLettersPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsDunningLettersPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDunningLettersPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsDunningLettersPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLettersPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLettersPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLettersPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLettersPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLettersPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesStatus":{"type":"string","enum":["ROBOCZE","WYGENEROWANE","WYSLANE","POTWIERDZONE","BLAD"]},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesPdfStorageKeyAnyOf0":{"type":"null"},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesPdfStorageKeyAnyOf1":{"type":"string","maxLength":1000},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesPdfStorageKey":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesPdfStorageKeyAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesPdfStorageKeyAnyOf1"}]},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesSentAtAnyOf0":{"type":"null"},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesSentAtAnyOf1":{"type":"string"},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesSentAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesSentAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesSentAtAnyOf1"}]},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesConfirmedAtAnyOf0":{"type":"null"},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesConfirmedAt":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesConfirmedAtAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesSentAtAnyOf1"}]},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesErrorDetailAnyOf0":{"type":"null"},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesErrorDetailAnyOf1":{"type":"string","maxLength":2000},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesErrorDetail":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesErrorDetailAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesErrorDetailAnyOf1"}]},"DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"status":{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesStatus"},"pdfStorageKey":{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesPdfStorageKey"},"sentAt":{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesSentAt"},"confirmedAt":{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesConfirmedAt"},"errorDetail":{"$ref":"#/components/schemas/DocPathsDunningLettersPutRequestBodyContentApplicationJsonSchemaPropertiesErrorDetail"}},"additionalProperties":false},"DocPathsDunningLettersPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDunningLettersPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDunningLettersPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDunningLettersPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLettersPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLettersPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLettersPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLettersPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLettersPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLettersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDunningLettersDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDunningLettersDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDunningLettersDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLettersDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLettersDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLettersDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLettersDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLettersDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLevelsGetParameters0Schema":{"type":"string","format":"uuid"},"DocPathsDunningLevelsGetParameters1Schema":{"type":"number"},"DocPathsDunningLevelsGetParameters2Schema":{"type":"number"},"DocPathsDunningLevelsGetParameters3Schema":{"type":"string"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPolicyId":{"type":"string","format":"uuid"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLevelNumber":{"type":"number"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel":{"type":"string"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTriggerDays":{"type":"number"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAutoEscalate":{"type":"boolean"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"policyId":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesPolicyId"},"levelNumber":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLevelNumber"},"label":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesLabel"},"triggerDays":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesTriggerDays"},"autoEscalate":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesAutoEscalate"},"version":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","policyId","levelNumber","label","triggerDays","autoEscalate","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsDunningLevelsGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLevelsGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLevelsGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLevelsGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLevelsGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesPolicyId":{"type":"string","format":"uuid"},"DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesLevelNumber":{"type":"number"},"DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":255},"DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":1000},"DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesTriggerDays":{"type":"number"},"DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesAutoEscalateAllOf0":{"type":"boolean"},"DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesAutoEscalate":{"allOf":[{"$ref":"#/components/schemas/DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesAutoEscalateAllOf0"}],"default":false},"DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"policyId":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesPolicyId"},"levelNumber":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesLevelNumber"},"label":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"triggerDays":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesTriggerDays"},"autoEscalate":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostRequestBodyContentApplicationJsonSchemaPropertiesAutoEscalate"}},"required":["policyId","levelNumber","label","triggerDays"],"additionalProperties":false},"DocPathsDunningLevelsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsDunningLevelsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDunningLevelsPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLevelsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLevelsPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsDunningLevelsPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsDunningLevelsPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLevelsPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLevelsPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLevelsPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLevelsPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesLabel":{"type":"string","minLength":1,"maxLength":255},"DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":1000},"DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesTriggerDays":{"type":"number"},"DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesAutoEscalate":{"type":"boolean"},"DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"label":{"$ref":"#/components/schemas/DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesLabel"},"description":{"$ref":"#/components/schemas/DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"triggerDays":{"$ref":"#/components/schemas/DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesTriggerDays"},"autoEscalate":{"$ref":"#/components/schemas/DocPathsDunningLevelsPutRequestBodyContentApplicationJsonSchemaPropertiesAutoEscalate"}},"additionalProperties":false},"DocPathsDunningLevelsPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDunningLevelsPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDunningLevelsPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDunningLevelsPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLevelsPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLevelsPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLevelsPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLevelsPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLevelsPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLevelsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDunningLevelsDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDunningLevelsDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDunningLevelsDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLevelsDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLevelsDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningLevelsDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningLevelsDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningLevelsDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningPoliciesGetParameters0Schema":{"type":"number"},"DocPathsDunningPoliciesGetParameters1Schema":{"type":"number"},"DocPathsDunningPoliciesGetParameters2Schema":{"type":"boolean"},"DocPathsDunningPoliciesGetParameters3Schema":{"type":"string"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId":{"type":"string","format":"uuid"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName":{"type":"string"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1":{"type":"string"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescriptionAnyOf1"}]},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSegmentAnyOf0":{"type":"null"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSegmentAnyOf1":{"type":"string"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSegment":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSegmentAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSegmentAnyOf1"}]},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive":{"type":"boolean"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxDaysOverdueAnyOf0":{"type":"null"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxDaysOverdueAnyOf1":{"type":"number"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxDaysOverdue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxDaysOverdueAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxDaysOverdueAnyOf1"}]},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion":{"type":"number"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt":{"type":"string"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt":{"type":"string"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesId"},"name":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesDescription"},"segment":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesSegment"},"isActive":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesIsActive"},"maxDaysOverdue":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesMaxDaysOverdue"},"version":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesVersion"},"createdAt":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesCreatedAt"},"updatedAt":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItemsPropertiesUpdatedAt"}},"required":["id","name","isActive","version","createdAt","updatedAt"],"additionalProperties":false},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItems":{"type":"array","items":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItemsItems"}},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesTotal":{"type":"number"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesPage":{"type":"number"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize":{"type":"number"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages":{"type":"number"},"DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"items":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesItems"},"total":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesTotal"},"page":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesPage"},"pageSize":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesPageSize"},"totalPages":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses200ContentApplicationJsonSchemaPropertiesTotalPages"}},"required":["items","total","totalPages"],"additionalProperties":false},"DocPathsDunningPoliciesGetResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningPoliciesGetResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningPoliciesGetResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningPoliciesGetResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningPoliciesGetResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":1000},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentAnyOf0":{"type":"null"},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentAnyOf1":{"type":"string","maxLength":100},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesSegment":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesSegmentAnyOf1"}]},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0":{"type":"boolean"},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"allOf":[{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActiveAllOf0"}],"default":true},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdueAnyOf0":{"type":"null"},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdueAnyOf1":{"type":"number"},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdueAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdueAnyOf1"}]},"DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"segment":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesSegment"},"isActive":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"maxDaysOverdue":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdue"}},"required":["name"],"additionalProperties":false},"DocPathsDunningPoliciesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0":{"type":"null"},"DocPathsDunningPoliciesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1":{"type":"string","format":"uuid"},"DocPathsDunningPoliciesPostResponses201ContentApplicationJsonSchemaPropertiesId":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostResponses201ContentApplicationJsonSchemaPropertiesIdAnyOf1"}]},"DocPathsDunningPoliciesPostResponses201ContentApplicationJsonSchema":{"type":"object","properties":{"id":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostResponses201ContentApplicationJsonSchemaPropertiesId"}},"required":["id"],"additionalProperties":false},"DocPathsDunningPoliciesPostResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningPoliciesPostResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningPoliciesPostResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningPoliciesPostResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPostResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesName":{"type":"string","minLength":1,"maxLength":255},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0":{"type":"null"},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1":{"type":"string","maxLength":1000},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesDescriptionAnyOf1"}]},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentAnyOf0":{"type":"null"},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentAnyOf1":{"type":"string","maxLength":100},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesSegment":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesSegmentAnyOf1"}]},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive":{"type":"boolean"},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdueAnyOf0":{"type":"null"},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdueAnyOf1":{"type":"number"},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdue":{"anyOf":[{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdueAnyOf0"},{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdueAnyOf1"}]},"DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchema":{"type":"object","properties":{"name":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesName"},"description":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesDescription"},"segment":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesSegment"},"isActive":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesIsActive"},"maxDaysOverdue":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutRequestBodyContentApplicationJsonSchemaPropertiesMaxDaysOverdue"}},"additionalProperties":false},"DocPathsDunningPoliciesPutResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDunningPoliciesPutResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDunningPoliciesPutResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningPoliciesPutResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningPoliciesPutResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningPoliciesPutResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningPoliciesPutResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningPoliciesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk":{"type":"boolean","enum":[true]},"DocPathsDunningPoliciesDeleteResponses200ContentApplicationJsonSchema":{"type":"object","properties":{"ok":{"$ref":"#/components/schemas/DocPathsDunningPoliciesDeleteResponses200ContentApplicationJsonSchemaPropertiesOk"}},"required":["ok"],"additionalProperties":false},"DocPathsDunningPoliciesDeleteResponses401ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningPoliciesDeleteResponses401ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningPoliciesDeleteResponses401ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false},"DocPathsDunningPoliciesDeleteResponses403ContentApplicationJsonSchemaPropertiesError":{"type":"string"},"DocPathsDunningPoliciesDeleteResponses403ContentApplicationJsonSchema":{"type":"object","properties":{"error":{"$ref":"#/components/schemas/DocPathsDunningPoliciesDeleteResponses403ContentApplicationJsonSchemaPropertiesError"}},"required":["error"],"additionalProperties":false}}},"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":"Attachments","description":"File attachments and media management."},{"name":"Events","description":"Event bus and subscriber dispatch"},{"name":"Klienci","description":"Kanoniczni odbiorcy gazu (Klient). Likwidują placeholder-UUID w hubach (energy_master_data), umowach (contracts) i fakturach (billing) gazowego MVP UNA — luźny FK po UUID, bez relacji ORM między modułami."},{"name":"Energy Master Data","description":"Kanoniczna hierarchia Klient → Hub → PointOfDelivery (PPG) → Licznik. Bitemporalne przypisania PPG ↔ klient/OSD/grupa taryfowa oraz licznik ↔ PPG. Fundament danych podstawowych gazowego MVP UNA (ADR-D10)."},{"name":"Connector OSD Gaz","description":"Transport SFTP/platforma OSD gazowego (PSGaz): ingest odczytów pomiarowych + dwukierunkowa wymiana komunikatów switchingu. Domyka audyt F1 §4 — wspólny konektor dla metering (DAT-002) i switching (DAT-003). DG1: tylko OSD gazowy SFTP, nie CSIRE/AS4."},{"name":"Metering","description":"Import danych pomiarowych OSD, VEE (walidacja/estymacja), konwersja m³→kWh (Wk per obszar OSD), niemutowalna migawka MeteringDataSnapshot, okresy rozliczeniowe, Correction Case. Rdzeń gazowego MVP UNA (REQ-001–REQ-012, DG2)."},{"name":"Market Data","description":"Indeksy cen rynkowych gazu (TGE/TTF/NBP) i governance publikacji fixingów. Dane wejściowe dla formuł indeksowanych w module pricing (REQ-005, REQ-013). Standalone OM, ADR-D12."},{"name":"Pricing","description":"Taryfy gazowe (Sprzedawca + OSD pass-through), formuły cenowe (fixed/indexed TGE/TTF), RatingService deterministyczny, snapshoty wyceny i kalkulacja marży. Blok 2/6 Data Master UNA (ADR-D12)."},{"name":"Contracts (CLM)","description":"CLM umów sprzedaży gazu (Blok 3 Data Master). Contract + ContractVersion + bitemporalne assignments (PPG, produkt, cena, security), PoA + Signatory, kalendarz operacyjny, aneksy/wypowiedzenia/przedłużenia, take-or-pay. Trigger switchingu przez contracts.ppg.added (audyt F1 P-04)."},{"name":"Billing (Fakturowanie gazowe)","description":"Moduł billing — Invoice/KSeF/akcyza/VAT/korekty + FI-CA balance (P-01). Blok 6 Data Master: meter-to-cash, BillingRun/BillingBatch/BillingDataPackage, KsefSubmission (FA(3) MVP mock), TaxBreakdown, CorrectiveInvoice, BillingAccount + Receivable + CustomerBalance (właściciel salda). Saga meterToCash = Temporal Tier 1 (om-temporal-saga — odrębny agent)."},{"name":"Payments (Płatności gazowe)","description":"Moduł payments — MT940 import, auto/manual matching, N:M allocation (partial/overpay), virtual accounts (PAT-001), online payments (payment_gateways FK), overdue detection. Blok 7 Data Master: order-to-cash domknięcie po stronie pieniądza. P-01: Receivable + CustomerBalance = właściciel billing; payments emituje payments.payment.matched → billing aktualizuje saldo (P-07). P-05: wszystkie event IDs 3-członowe."},{"name":"Switching (zmiana sprzedawcy gazu)","description":"Zmiana sprzedawcy gazu przez OSD gazowy (NIE CSIRE — ADR DG1/0005). Blok 4 Data Master (4H–4P). SwitchingCase (per PPG) + SwitchingPackage (4J, częściowa akceptacja) + SwitchingRequest do OSD przez connector_osd_gaz, odczyt graniczny z metering (P-03, 4K), SLA monitoring (4L), rezygnacja/ponowienie (4M/4N), sprzedaż rezerwowa (4P). Trigger: contracts.ppg.added (P-04). PoA fail-closed (REQ-007, AC-002). Saga switchingWorkflow → om-temporal-saga agent (lib/saga/** intentionally NOT here)."},{"name":"Connector Bank","description":"Transport MT940 z banku przez SFTP/H2H: pobieranie wyciągów, parsowanie do kanonicznego BankStatement DTO, emisja eventu connector_bank.statement.imported. Zastępuje mock importu MT940 w module payments (SVC-001). Gaz MVP — tylko inbound MT940, bez payouts/settlement."},{"name":"Connector Accounting (MOCKUP)","description":"MOCKUP seam — eksport zaksięgowanych faktur z billing do zewnętrznego programu księgowego (ERP). Transport STUB: adapter zapisuje postingi do AccountingPostingLog ze statusem MOCKED, bez realnego połączenia. TODO: podłącz AccountingAdapter.send() do właściwego API programu księgowego."},{"name":"Dunning (Windykacja Należności)","description":"Windykacja należności — DunningCase/Policy/Level/Step/Letter. Konsumuje payments.receivable.overdue → otwiera sprawę windykacyjną. Eskalacja przez Tier 2 USER_TASK (ReactFlow/OM workflows). Emituje dunning.case.opened / dunning.case.escalated / dunning.case.closed. PII w pismach przez TenantDataEncryptionService."}]}