Azure Container Instances · Schema
Event
A container group or container instance event.
AzureCloudContainer InstancesContainersMicrosoftServerless
Properties
| Name | Type | Description |
|---|---|---|
| count | integer | The count of the event. |
| firstTimestamp | string | The date-time of the earliest logged event. |
| lastTimestamp | string | The date-time of the latest logged event. |
| message | string | The event message. |
| name | string | The event name. |
| type | string | The event type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-instances/refs/heads/main/json-schema/azure-container-instances-event-schema.json",
"title": "Event",
"description": "A container group or container instance event.",
"type": "object",
"properties": {
"count": {
"description": "The count of the event.",
"type": "integer"
},
"firstTimestamp": {
"description": "The date-time of the earliest logged event.",
"format": "date-time",
"type": "string"
},
"lastTimestamp": {
"description": "The date-time of the latest logged event.",
"format": "date-time",
"type": "string"
},
"message": {
"description": "The event message.",
"type": "string"
},
"name": {
"description": "The event name.",
"type": "string"
},
"type": {
"description": "The event type.",
"type": "string"
}
}
}