{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-snow-family/refs/heads/main/json-schema/amazon-snow-family-data-transfer-schema.json",
"title": "DataTransfer",
"description": "Defines the real-time status of a Snow device's data transfer while the device is at Amazon Web Services. This data is only available while a job has a JobState value of InProgress, for both import and export jobs.",
"type": "object",
"properties": {
"BytesTransferred": {
"allOf": [
{
"$ref": "#/components/schemas/Long"
},
{
"description": "The number of bytes transferred between a Snow device and Amazon S3."
}
]
},
"ObjectsTransferred": {
"allOf": [
{
"$ref": "#/components/schemas/Long"
},
{
"description": "The number of objects transferred between a Snow device and Amazon S3."
}
]
},
"TotalBytes": {
"allOf": [
{
"$ref": "#/components/schemas/Long"
},
{
"description": "The total bytes of data for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed."
}
]
},
"TotalObjects": {
"allOf": [
{
"$ref": "#/components/schemas/Long"
},
{
"description": "The total number of objects for a transfer between a Snow device and Amazon S3. This value is set to 0 (zero) until all the keys that will be transferred have been listed."
}
]
}
}
}