Azure Container Registry · Schema
EventResponseMessage
The event response message received from the service URI.
AzureContainer ImagesContainersDockerRegistry
Properties
| Name | Type | Description |
|---|---|---|
| content | string | The content of the event response message. |
| headers | object | The headers of the event response message. |
| reasonPhrase | string | The reason phrase of the event response message. |
| statusCode | string | The status code of the event response message. |
| version | string | The HTTP message version. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-registry/refs/heads/main/json-schema/azure-container-registry-event-response-message-schema.json",
"title": "EventResponseMessage",
"description": "The event response message received from the service URI.",
"type": "object",
"properties": {
"content": {
"description": "The content of the event response message.",
"type": "string"
},
"headers": {
"additionalProperties": {
"type": "string"
},
"description": "The headers of the event response message.",
"type": "object"
},
"reasonPhrase": {
"description": "The reason phrase of the event response message.",
"type": "string"
},
"statusCode": {
"description": "The status code of the event response message.",
"type": "string"
},
"version": {
"description": "The HTTP message version.",
"type": "string"
}
}
}