Properties
| Name | Type | Description |
|---|---|---|
| @ai.messages | array | Messages from the service. |
| @odata.context | string | OData context. |
| @odata.count | integer | Count of matching results. |
| value | array | The collection of events. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EventsResults",
"title": "EventsResults",
"type": "object",
"properties": {
"@ai.messages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string"
}
}
},
"description": "Messages from the service."
},
"@odata.context": {
"type": "string",
"description": "OData context."
},
"@odata.count": {
"type": "integer",
"description": "Count of matching results."
},
"value": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EventsResultData"
},
"description": "The collection of events."
}
}
}