# LocalizedMessageErrorDetail


[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": "Provides a localized error message that is safe to return to the user\nwhich can be attached to an operation error.",
  "properties": {
    "@type": {
      "const": "type.googleapis.com/google.rpc.LocalizedMessage",
      "type": "string"
    },
    "locale": {
      "description": "The locale used following the specification defined at\nhttps://www.rfc-editor.org/rfc/bcp/bcp47.txt.\nExamples are: \"en-US\", \"fr-CH\", \"es-MX\"",
      "type": "string"
    },
    "message": {
      "description": "The localized error message in the above locale.",
      "type": "string"
    }
  },
  "required": [
    "@type"
  ],
  "title": "LocalizedMessageErrorDetail",
  "type": "object"
}
```



