Adobe Analytics · Schema

UploadResponse

Response after a successful file upload

AdobeAnalyticsBusiness IntelligenceCustomer IntelligenceDigital MarketingMarketingWeb Analytics

Properties

Name Type Description
uploadTrackingCode string Unique tracking code for this upload
fileSize integer Size of the uploaded file in bytes
receivedTime string Timestamp when the file was received
View JSON Schema on GitHub

JSON Schema

adobe-analytics-bulk-data-insertion-upload-response-schema.json Raw ↑
{
  "type": "object",
  "description": "Response after a successful file upload",
  "properties": {
    "uploadTrackingCode": {
      "type": "string",
      "description": "Unique tracking code for this upload",
      "example": "example_value"
    },
    "fileSize": {
      "type": "integer",
      "description": "Size of the uploaded file in bytes",
      "example": 10
    },
    "receivedTime": {
      "type": "string",
      "description": "Timestamp when the file was received",
      "format": "date-time",
      "example": "2026-01-15T10:30:00Z"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UploadResponse"
}