# Coverage

## Checks \[Paginated]

> This endpoint provides a real-time list of all the check that exist in your organization's account,\
> as well as the datasets upon which each check depends.\
> \
> Usage\
> \-----\
> Use this endpoint to enrich results from the \`/datasets\` or \`/check\_results\` endpoints.\
> \
> Returns\
> \-------\
> An object of type \`CheckResult\` containing an array of \`CheckData\` for each check.\
> \
> Find details about the response objects in the \*\*Schemas\*\* section or by\
> unfurling the response details.

```json
{"openapi":"3.0.2","info":{"title":"Soda Cloud Reporting API","version":"1.3.1"},"servers":[{"url":"https://reporting.cloud.soda.io/v1","description":"Cloud EU"},{"url":"https://reporting.cloud.us.soda.io/v1","description":"Cloud US"}],"security":[{"HTTPBasic":[]},{"SodaBackendToken":[]},{"APIKeyCookie":[]},{"ApiKeyId[Soon Deprecated] Use XApiKeyID":[]},{"APIKeySecret[Soon Deprecated] Use XApiKeySecret":[]},{"XApiKeyId":[]},{"XApiKeySecret":[]}],"components":{"securitySchemes":{"HTTPBasic":{"type":"http","scheme":"basic"},"SodaBackendToken":{"type":"apiKey","in":"header","name":"SODA_TOKEN"},"APIKeyCookie":{"type":"apiKey","in":"cookie","name":"token"},"ApiKeyId[Soon Deprecated] Use XApiKeyID":{"type":"apiKey","in":"header","name":"API_KEY_ID"},"APIKeySecret[Soon Deprecated] Use XApiKeySecret":{"type":"apiKey","in":"header","name":"API_KEY_SECRET"},"XApiKeyId":{"type":"apiKey","in":"header","name":"X-API-KEY-ID"},"XApiKeySecret":{"type":"apiKey","in":"header","name":"X-API-KEY-SECRET"}},"schemas":{"CheckRequest":{"title":"CheckRequest","type":"object","properties":{"page":{"title":"Page","minimum":1,"type":"integer","description":"Page number","default":1},"size":{"title":"Size","maximum":1000,"minimum":1,"type":"integer","description":"Page size","default":400},"dataset_ids":{"title":"Dataset Ids","type":"array","items":{"type":"string"},"description":"Dataset IDs (UUIDs from the Soda Cloud platform) to use as filter."},"check_ids":{"title":"Check Ids","type":"array","items":{"type":"string"},"description":"Check IDs (UUIDs from the Soda Cloud platform) to use as filter."}},"description":"Tests request JSON Body."},"CheckResult":{"title":"CheckResult","required":["total","page","size","data"],"type":"object","properties":{"total":{"title":"Total","type":"integer"},"page":{"title":"Page","type":"integer"},"size":{"title":"Size","type":"integer"},"data":{"title":"Data","type":"array","items":{"$ref":"#/components/schemas/ChecksData"}}},"description":"Array of `TestsData`."},"ChecksData":{"title":"ChecksData","type":"object","properties":{"check_id":{"title":"Check Id","type":"string","description":"Identifier (UUID) of a check in Soda Cloud."},"organization_id":{"title":"Organization Id","type":"string","description":"Identifier (UUID) of an organization in Soda Cloud."},"check_name":{"title":"Check Name","type":"string","description":"Name of a specific check in Soda Cloud."},"check_type":{"title":"Check Type","type":"string","description":"\nType of Soda check. For example, the type is \"metric\" if the check uses a metric in Soda Cloud;\n\"external\" if the check is evaluated by Soda SQL.\n        "},"created_at":{"title":"Created At","type":"string","description":"UTC timestamp at which the check was created.","format":"date-time"},"is_archived":{"title":"Is Archived","type":"string","description":"Whether the check is archived."},"dataset_id":{"title":"Dataset Id","type":"string","description":"Identifier (UUID) of a dataset in Soda Cloud."},"owner_id":{"title":"Owner Id","type":"string","description":"Identifier (UUID) of the check owner in Soda Cloud."},"owner_first_name":{"title":"Owner First Name","type":"string","description":"First name of the check owner."},"owner_last_name":{"title":"Owner Last Name","type":"string","description":"Last name of the check owner."},"owner_email":{"title":"Owner Email","type":"string","description":"Email of the check owner."},"owner_job_title":{"title":"Owner Job Title","type":"string","description":"Job title of the check owner."},"owner_phone_number":{"title":"Owner Phone Number","type":"string","description":"Phone number of the check owner."},"owner_user_type":{"title":"Owner User Type","type":"string","description":"User type of the check owner."},"attributes":{"title":"Attributes","type":"object","additionalProperties":{"type":"array","items":{"type":"string"}},"description":"Atributes of a check"},"check_group_aggregate_id":{"title":"Check Group Aggregate Id","type":"string","description":"\nIn the UI, group checks are displayed as a single expandable check or group.\nWhen not null, this field holds the ID of the group, allowing sub-checks to be paired\nusing the check_group_aggregate_id. Checks with a check_group_id are termed \"aggregate checks\".\nThey lack associated results and don't count for coverage, but their sub-checks do.\n    "},"check_group_id":{"title":"Check Group Id","type":"string","description":"\nUse this field to group sub-checks that are part of a group check type.\n"},"is_group_aggregate_check":{"title":"Is Group Aggregate Check","type":"boolean","description":"\nIn the UI, group checks are displayed as a single expendable check or group.\nWhen true, this field allows you to filter or know that this record of a check corresponds\nto the group check (the \"aggregate if you will). This check does not have check results associated.\n"},"source":{"title":"Source","type":"string","description":"Specifies the check's source application or system. It is usually null, indicating the soda-library as the default. Set explicitly for dbt ingested tests."}},"description":"Contains information about a check and its associated datasets."},"PaginatedResult":{"title":"PaginatedResult","required":["total","page","size"],"type":"object","properties":{"total":{"title":"Total","type":"integer"},"page":{"title":"Page","type":"integer"},"size":{"title":"Size","type":"integer"}},"description":"Pydantic model for a basic paginated result with pagination info."},"NoContentError":{"title":"NoContentError","type":"object","properties":{"resource":{"title":"Resource","type":"string","description":"Name of the resource. Usually the same string as the endpoint."},"data":{"title":"Data","type":"array","items":{"type":"object"},"description":"Generic data payload from the query. Should be overidden with a more specific pydandic model.","default":[]},"detail":{"title":"Detail","type":"string","default":"No results for the requested data. Since the data is pre-processed in batches it might be that the data you are looking for has not yet been processed. You can check when the last refresh took place by using the /last_etl_refresh_info endpoint. If you think this is a bug and you should be getting results, get in touch with us."}},"description":"Response Schema of a NoContent Error"},"HTTPValidationError":{"title":"HTTPValidationError","type":"object","properties":{"detail":{"title":"Detail","type":"array","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"title":"ValidationError","required":["loc","msg","type"],"type":"object","properties":{"loc":{"title":"Location","type":"array","items":{"anyOf":[{"type":"string"},{"type":"integer"}]}},"msg":{"title":"Message","type":"string"},"type":{"title":"Error Type","type":"string"}}}}},"paths":{"/coverage/checks":{"post":{"tags":["Coverage"],"summary":"Checks [Paginated]","description":"This endpoint provides a real-time list of all the check that exist in your organization's account,\nas well as the datasets upon which each check depends.\n\nUsage\n-----\nUse this endpoint to enrich results from the `/datasets` or `/check_results` endpoints.\n\nReturns\n-------\nAn object of type `CheckResult` containing an array of `CheckData` for each check.\n\nFind details about the response objects in the **Schemas** section or by\nunfurling the response details.","operationId":"checks_coverage_checks_post","requestBody":{"content":{"application/json":{"schema":{"title":"Request Body","allOf":[{"$ref":"#/components/schemas/CheckRequest"}],"default":{"page":1,"size":400}}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/CheckResult","title":"Response Checks Coverage Checks Post","anyOf":[{"$ref":"#/components/schemas/CheckResult"},{"$ref":"#/components/schemas/PaginatedResult"}]}}}},"202":{"description":"Successful request but no data was returned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NoContentError"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}}}
```

## Datasets \[Paginated]

> This endpoint provides information about all the datasets that your team has connected to your organization's\
> Soda Cloud account.\
> \
> Usage\
> \-----\
> Use this endpoint to review the number of datasets Soda Cloud accesses, including each dataset's most recent scan\
> time and test failure counts.\
> \
> Use the data from this endpoint to enrich other endpoints' data such as \`/dataset\_health\` and\
> \`/dataset\_coverage\`\
> \
> Returns\
> \-------\
> An object of type \`DatasetsResult\` containing an array of \`DatasetsData\`\
> \
> Find details about the response objects in the \*\*Schemas\*\* section or by\
> unfurling the response details.

```json
{"openapi":"3.0.2","info":{"title":"Soda Cloud Reporting API","version":"1.3.1"},"servers":[{"url":"https://reporting.cloud.soda.io/v1","description":"Cloud EU"},{"url":"https://reporting.cloud.us.soda.io/v1","description":"Cloud US"}],"security":[{"HTTPBasic":[]},{"SodaBackendToken":[]},{"APIKeyCookie":[]},{"ApiKeyId[Soon Deprecated] Use XApiKeyID":[]},{"APIKeySecret[Soon Deprecated] Use XApiKeySecret":[]},{"XApiKeyId":[]},{"XApiKeySecret":[]}],"components":{"securitySchemes":{"HTTPBasic":{"type":"http","scheme":"basic"},"SodaBackendToken":{"type":"apiKey","in":"header","name":"SODA_TOKEN"},"APIKeyCookie":{"type":"apiKey","in":"cookie","name":"token"},"ApiKeyId[Soon Deprecated] Use XApiKeyID":{"type":"apiKey","in":"header","name":"API_KEY_ID"},"APIKeySecret[Soon Deprecated] Use XApiKeySecret":{"type":"apiKey","in":"header","name":"API_KEY_SECRET"},"XApiKeyId":{"type":"apiKey","in":"header","name":"X-API-KEY-ID"},"XApiKeySecret":{"type":"apiKey","in":"header","name":"X-API-KEY-SECRET"}},"schemas":{"DatasetsRequest":{"title":"DatasetsRequest","type":"object","properties":{"page":{"title":"Page","minimum":1,"type":"integer","description":"Page number","default":1},"size":{"title":"Size","maximum":1000,"minimum":1,"type":"integer","description":"Page size","default":400},"dataset_ids":{"title":"Dataset Ids","type":"array","items":{"type":"string"},"description":"Dataset IDs (UUIDs from the Soda Cloud platform) to use as filter."}},"description":"Datasets request JSON Body."},"DatasetsResult":{"title":"DatasetsResult","required":["total","page","size","data"],"type":"object","properties":{"total":{"title":"Total","type":"integer"},"page":{"title":"Page","type":"integer"},"size":{"title":"Size","type":"integer"},"data":{"title":"Data","type":"array","items":{"$ref":"#/components/schemas/DatasetsData"}}},"description":"Array of `DatasetsData`."},"DatasetsData":{"title":"DatasetsData","type":"object","properties":{"dataset_id":{"title":"Dataset Id","type":"string","description":"Identifier (UUID) of a dataset in Soda Cloud."},"organization_id":{"title":"Organization Id","type":"string","description":"Identifier (UUID) of an organization in Soda Cloud."},"dataset_name":{"title":"Dataset Name","type":"string","description":"Name of the dataset in Soda Cloud corresponding to the name of the dataset in the data source."},"dataset_label":{"title":"Dataset Label","type":"string","description":"Custom name given to a dataset in Soda Cloud. Will often be identical to dataset_name"},"tags":{"title":"Tags","type":"array","items":{"type":"string"},"description":"User-provided list of tags."},"owner_id":{"title":"Owner Id","type":"string","description":"Identifier (UUID) of the check owner in Soda Cloud."},"owner_first_name":{"title":"Owner First Name","type":"string","description":"First name of the check owner."},"owner_last_name":{"title":"Owner Last Name","type":"string","description":"Last name of the check owner."},"owner_email":{"title":"Owner Email","type":"string","description":"Email of the check owner."},"owner_job_title":{"title":"Owner Job Title","type":"string","description":"Job title of the check owner."},"owner_phone_number":{"title":"Owner Phone Number","type":"string","description":"Phone number of the check owner."},"owner_user_type":{"title":"Owner User Type","type":"string","description":"User type of the check owner."},"owner_last_login_at":{"title":"Owner Last Login At","type":"string","description":"Timestamp corresponding to the last time the owner logged into Soda Cloud.","format":"date-time"},"number_of_rows":{"title":"Number Of Rows","anyOf":[{"type":"integer"},{"type":"string"}],"description":"Current (and latest known) number of rows in the dataset."},"number_of_failed_checks":{"title":"Number Of Failed Checks","anyOf":[{"type":"integer"},{"type":"string"}],"description":"Number of checks that failed on a specific dataset."},"last_scan_time":{"title":"Last Scan Time","type":"string","description":"UTC timestamp of the last scan run on a dataset.","format":"date-time"},"attributes":{"title":"Attributes","type":"object","additionalProperties":{"type":"array","items":{"type":"string"}},"description":"Atributes of a dataset"},"datasource_id":{"title":"Datasource Id","type":"string","description":"UUID of the data source as assigned by the Soda Cloud platform."},"datasource_name":{"title":"Datasource Name","type":"string","description":"\nName of the datasource in Soda Cloud coresponding to the name of the\n datasource in your configuration file."},"datasource_label":{"title":"Datasource Label","type":"string","description":"Label of the datasource corresponding to the name displayed in Soda Cloud"},"datasource_source_owner":{"title":"Datasource Source Owner","type":"string","description":"The name of the source application (e.g. soda-core) that owns the data source."},"datasource_owner_id":{"title":"Datasource Owner Id","type":"string","description":"UUID corresponding the the configured datasource owner."},"datasource_has_core_agent_enabled":{"title":"Datasource Has Core Agent Enabled","type":"boolean","description":"Boolean indicating whether the datasource is onboarded and part of a Soda Agent."}},"description":"Contains information about a dataset."},"PaginatedResult":{"title":"PaginatedResult","required":["total","page","size"],"type":"object","properties":{"total":{"title":"Total","type":"integer"},"page":{"title":"Page","type":"integer"},"size":{"title":"Size","type":"integer"}},"description":"Pydantic model for a basic paginated result with pagination info."},"NoContentError":{"title":"NoContentError","type":"object","properties":{"resource":{"title":"Resource","type":"string","description":"Name of the resource. Usually the same string as the endpoint."},"data":{"title":"Data","type":"array","items":{"type":"object"},"description":"Generic data payload from the query. Should be overidden with a more specific pydandic model.","default":[]},"detail":{"title":"Detail","type":"string","default":"No results for the requested data. Since the data is pre-processed in batches it might be that the data you are looking for has not yet been processed. You can check when the last refresh took place by using the /last_etl_refresh_info endpoint. If you think this is a bug and you should be getting results, get in touch with us."}},"description":"Response Schema of a NoContent Error"},"HTTPValidationError":{"title":"HTTPValidationError","type":"object","properties":{"detail":{"title":"Detail","type":"array","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"title":"ValidationError","required":["loc","msg","type"],"type":"object","properties":{"loc":{"title":"Location","type":"array","items":{"anyOf":[{"type":"string"},{"type":"integer"}]}},"msg":{"title":"Message","type":"string"},"type":{"title":"Error Type","type":"string"}}}}},"paths":{"/coverage/datasets":{"post":{"tags":["Coverage"],"summary":"Datasets [Paginated]","description":"This endpoint provides information about all the datasets that your team has connected to your organization's\nSoda Cloud account.\n\nUsage\n-----\nUse this endpoint to review the number of datasets Soda Cloud accesses, including each dataset's most recent scan\ntime and test failure counts.\n\nUse the data from this endpoint to enrich other endpoints' data such as `/dataset_health` and\n`/dataset_coverage`\n\nReturns\n-------\nAn object of type `DatasetsResult` containing an array of `DatasetsData`\n\nFind details about the response objects in the **Schemas** section or by\nunfurling the response details.","operationId":"datasets_coverage_datasets_post","requestBody":{"content":{"application/json":{"schema":{"title":"Request Body","allOf":[{"$ref":"#/components/schemas/DatasetsRequest"}],"default":{"page":1,"size":400}}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DatasetsResult","title":"Response Datasets Coverage Datasets Post","anyOf":[{"$ref":"#/components/schemas/DatasetsResult"},{"$ref":"#/components/schemas/PaginatedResult"}]}}}},"202":{"description":"Successful request but no data was returned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NoContentError"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}}}
```

## Dataset coverage

> This endpoint provides a daily measure of the test coverage of your datasets.\
> It derives a \`relative\_coverage\_score\` which compares the number of checks that apply to a single dataset to\
> other datasets connected to your organization's Soda Cloud account. (Refer to the \`DatasetCoverageData\` schema\
> for more information.)\
> \
> Usage\
> \-----\
> Use this endpoint to review the relative test coverage of your datasets, and to see a high-level view of the more\
> granular information that the \`/tests\_and\_results\` endpoint provides.\
> \
> This endpoint is best used in conjunction with the \`/datasets\` endpoint as the latter augments the level of\
> information about each dataset.\
> \
> Returns\
> \-------\
> An object of type \`DatasetCoverageResult\` containing an array of \`DatasetCoverageData\`\
> \
> Find details about the response objects in the \*\*Schemas\*\* section or by\
> unfurling the response details.

```json
{"openapi":"3.0.2","info":{"title":"Soda Cloud Reporting API","version":"1.3.1"},"servers":[{"url":"https://reporting.cloud.soda.io/v1","description":"Cloud EU"},{"url":"https://reporting.cloud.us.soda.io/v1","description":"Cloud US"}],"security":[{"HTTPBasic":[]},{"SodaBackendToken":[]},{"APIKeyCookie":[]},{"ApiKeyId[Soon Deprecated] Use XApiKeyID":[]},{"APIKeySecret[Soon Deprecated] Use XApiKeySecret":[]},{"XApiKeyId":[]},{"XApiKeySecret":[]}],"components":{"securitySchemes":{"HTTPBasic":{"type":"http","scheme":"basic"},"SodaBackendToken":{"type":"apiKey","in":"header","name":"SODA_TOKEN"},"APIKeyCookie":{"type":"apiKey","in":"cookie","name":"token"},"ApiKeyId[Soon Deprecated] Use XApiKeyID":{"type":"apiKey","in":"header","name":"API_KEY_ID"},"APIKeySecret[Soon Deprecated] Use XApiKeySecret":{"type":"apiKey","in":"header","name":"API_KEY_SECRET"},"XApiKeyId":{"type":"apiKey","in":"header","name":"X-API-KEY-ID"},"XApiKeySecret":{"type":"apiKey","in":"header","name":"X-API-KEY-SECRET"}},"schemas":{"DatasetCoverageRequest":{"title":"DatasetCoverageRequest","type":"object","properties":{"dataset_ids":{"title":"Dataset Ids","type":"array","items":{"type":"string"},"description":"Dataset IDs (UUIDs from the Soda Cloud platform) to use as filter."}},"description":"Dataset coverage request JSON Body."},"DatasetCoverageResult":{"title":"DatasetCoverageResult","required":["data"],"type":"object","properties":{"data":{"$ref":"#/components/schemas/DatasetCoverageDataObject"}},"description":"Array of `DatasetInfoData` and `DatasetCoverageDescriptivesData`."},"DatasetCoverageDataObject":{"title":"DatasetCoverageDataObject","required":["descriptives","dataset_info"],"type":"object","properties":{"descriptives":{"$ref":"#/components/schemas/DatasetCoverageDescriptivesData"},"dataset_info":{"title":"Dataset Info","type":"array","items":{"$ref":"#/components/schemas/DatasetInfoData"}}},"description":"Array of `DatasetInfoData` and `DatasetCoverageDescriptivesData`."},"DatasetCoverageDescriptivesData":{"title":"DatasetCoverageDescriptivesData","type":"object","properties":{"median_number_of_checks":{"title":"Median Number Of Checks","type":"number","description":"Median number of checks across all datasets in your organization.","default":0},"max_number_of_checks":{"title":"Max Number Of Checks","type":"number","description":"Maximum number of checks across all datasets in your organization.","default":0},"min_number_of_checks":{"title":"Min Number Of Checks","type":"number","description":"Minimum number of checks across all datasets in your organization.","default":0},"standard_deviation_number_of_checks":{"title":"Standard Deviation Number Of Checks","anyOf":[{"type":"number"},{"type":"string"},{"type":"integer"}],"description":"Standard deviation of the number of checks across all datasets in your organization.","default":0},"mean_number_of_checks":{"title":"Mean Number Of Checks","type":"number","description":"Mean number of checks across all datasets in your organization.","default":0}},"description":"Contains coverage descriptives across datasets."},"DatasetInfoData":{"title":"DatasetInfoData","type":"object","properties":{"dataset_id":{"title":"Dataset Id","type":"string","description":"Identifier (UUID) of a dataset in Soda Cloud."},"number_of_checks":{"title":"Number Of Checks","type":"integer","description":"Number of checks covering a specific dataset."},"relative_coverage_score":{"title":"Relative Coverage Score","type":"string","description":"\nA score derived by comparing the number of checks that apply to a single dataset to the number of checks\nthat apply to other datasets in your organization's Soda Cloud account. Soda applies the labels \"good\", \"medium\", and\n\"poor\" based on a 3-ntile split.\n        "}},"description":"Information about a dataset including whether a dataset is active or deleted,\nand check coverage metrics."},"NoContentError":{"title":"NoContentError","type":"object","properties":{"resource":{"title":"Resource","type":"string","description":"Name of the resource. Usually the same string as the endpoint."},"data":{"title":"Data","type":"array","items":{"type":"object"},"description":"Generic data payload from the query. Should be overidden with a more specific pydandic model.","default":[]},"detail":{"title":"Detail","type":"string","default":"No results for the requested data. Since the data is pre-processed in batches it might be that the data you are looking for has not yet been processed. You can check when the last refresh took place by using the /last_etl_refresh_info endpoint. If you think this is a bug and you should be getting results, get in touch with us."}},"description":"Response Schema of a NoContent Error"},"HTTPValidationError":{"title":"HTTPValidationError","type":"object","properties":{"detail":{"title":"Detail","type":"array","items":{"$ref":"#/components/schemas/ValidationError"}}}},"ValidationError":{"title":"ValidationError","required":["loc","msg","type"],"type":"object","properties":{"loc":{"title":"Location","type":"array","items":{"anyOf":[{"type":"string"},{"type":"integer"}]}},"msg":{"title":"Message","type":"string"},"type":{"title":"Error Type","type":"string"}}}}},"paths":{"/coverage/dataset_coverage":{"post":{"tags":["Coverage"],"summary":"Dataset coverage","description":"This endpoint provides a daily measure of the test coverage of your datasets.\nIt derives a `relative_coverage_score` which compares the number of checks that apply to a single dataset to\nother datasets connected to your organization's Soda Cloud account. (Refer to the `DatasetCoverageData` schema\nfor more information.)\n\nUsage\n-----\nUse this endpoint to review the relative test coverage of your datasets, and to see a high-level view of the more\ngranular information that the `/tests_and_results` endpoint provides.\n\nThis endpoint is best used in conjunction with the `/datasets` endpoint as the latter augments the level of\ninformation about each dataset.\n\nReturns\n-------\nAn object of type `DatasetCoverageResult` containing an array of `DatasetCoverageData`\n\nFind details about the response objects in the **Schemas** section or by\nunfurling the response details.","operationId":"dataset_coverage_coverage_dataset_coverage_post","requestBody":{"content":{"application/json":{"schema":{"title":"Request Body","allOf":[{"$ref":"#/components/schemas/DatasetCoverageRequest"}],"default":{}}}}},"responses":{"200":{"description":"Successful Response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DatasetCoverageResult"}}}},"202":{"description":"Successful request but no data was returned","content":{"application/json":{"schema":{"$ref":"#/components/schemas/NoContentError"}}}},"422":{"description":"Validation Error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/HTTPValidationError"}}}}}}}}}
```
