Properties
| Name | Type | Description |
|---|---|---|
| error | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/monitors400ErrorInvalidUid",
"title": "Invalid UID",
"type": "object",
"properties": {
"error": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The error name.",
"example": "invalidUidError"
},
"message": {
"type": "string",
"description": "The error message.",
"example": "The specified uid is invalid."
},
"details": {
"type": "object",
"description": "Information about the error.",
"properties": {
"param": {
"type": "string",
"description": "The invalid parameter.",
"example": "collection"
},
"uid": {
"type": "string",
"format": "uid",
"description": "The invalid UID.",
"example": "5daabc50-8451-43f6-922d-96b403b4f28e"
}
}
}
}
}
}
}