Keboola · Schema
TokenEventAttachmentResponse
Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Attachment file ID. |
| isSliced | boolean | Whether the file is sliced. |
| uploadType | string | Upload type of the file. |
| isExpired | boolean | Whether the file is expired. |
| created | string | Attachment creation timestamp. |
| name | string | Attachment file name. |
| url | string | Attachment download URL. |
| sizeBytes | integer | Attachment file size in bytes. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "TokenEventAttachmentResponse",
"required": [
"id",
"isSliced",
"uploadType",
"isExpired",
"created",
"name",
"url"
],
"properties": {
"id": {
"description": "Attachment file ID.",
"type": "integer"
},
"isSliced": {
"description": "Whether the file is sliced.",
"type": "boolean"
},
"uploadType": {
"description": "Upload type of the file.",
"type": "string"
},
"isExpired": {
"description": "Whether the file is expired.",
"type": "boolean"
},
"created": {
"description": "Attachment creation timestamp.",
"type": "string",
"format": "date-time"
},
"name": {
"description": "Attachment file name.",
"type": "string"
},
"url": {
"description": "Attachment download URL.",
"type": "string"
},
"sizeBytes": {
"description": "Attachment file size in bytes.",
"type": "integer",
"nullable": true
}
},
"type": "object"
}