Keboola · Schema
TokenEventResponse
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| id | string | ID of the event. |
| event | string | Name of the event. |
| component | string | Component name. |
| runId | string | Run ID of the event. |
| created | string | Event creation timestamp. |
| uri | string | Link to the event details. |
| params | object | Event parameters. |
| results | object | Event results. |
| performance | object | Event performance metrics. |
| attachments | array |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "TokenEventResponse",
"required": [
"id",
"event",
"component",
"created",
"uri",
"params",
"results",
"performance",
"attachments"
],
"properties": {
"id": {
"description": "ID of the event.",
"type": "string"
},
"event": {
"description": "Name of the event.",
"type": "string"
},
"component": {
"description": "Component name.",
"type": "string"
},
"runId": {
"description": "Run ID of the event.",
"type": "string",
"nullable": true
},
"created": {
"description": "Event creation timestamp.",
"type": "string",
"format": "date-time"
},
"uri": {
"description": "Link to the event details.",
"type": "string"
},
"params": {
"description": "Event parameters.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"results": {
"description": "Event results.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"performance": {
"description": "Event performance metrics.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"attachments": {
"type": "array",
"items": {
"$ref": "#/components/schemas/TokenEventAttachmentResponse"
}
}
},
"type": "object"
}