# QuotaFailureErrorDetail


[API catalog](/reference/api/) · [Docker Sandboxes overview](/reference/api/sandboxes/latest/) · [Product manual](https://docs.docker.com/ai/sandboxes-api/) · [OpenAPI specification](/reference/api/sandboxes/api.yaml)

API version: v1


> This API is experimental. Features, interfaces,
> and behavior may change.




Schema constraints and annotations:

```json
{
  "description": "Describes how a quota check failed.\n\nFor example if a daily limit was exceeded for the calling project,\na service could respond with a QuotaFailure detail containing the project\nid and the description of the quota limit that was exceeded.  If the\ncalling project hasn't enabled the service in the developer console, then\na service could respond with the project id and set `service_disabled`\nto true.\n\nAlso see RetryInfo and Help types for other details about handling a\nquota failure.",
  "properties": {
    "@type": {
      "const": "type.googleapis.com/google.rpc.QuotaFailure",
      "type": "string"
    },
    "violations": {
      "description": "Describes all quota violations.",
      "items": {
        "$ref": "#/components/schemas/QuotaFailureViolation"
      },
      "type": "array"
    }
  },
  "required": [
    "@type"
  ],
  "title": "QuotaFailureErrorDetail",
  "type": "object"
}
```



