Reference

325

UploadCompletion

This page is generated from the exact OpenAPI component schema. It does not add undocumented validation or product behavior.

Download JSON Schema

PropertyRequiredTypeDescription
intentPublicIdYesstring
statusYesstring
jobPublicIdYesstring
jobTypeYesstring
eTagYesstring | null
replayedYesboolean
json
{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "intentPublicId",
    "status",
    "jobPublicId",
    "jobType",
    "eTag",
    "replayed"
  ],
  "properties": {
    "intentPublicId": {
      "type": "string",
      "format": "uuid"
    },
    "status": {
      "type": "string",
      "const": "COMPLETED"
    },
    "jobPublicId": {
      "type": "string",
      "format": "uuid"
    },
    "jobType": {
      "type": "string",
      "enum": [
        "MASTER_INGEST",
        "COVER_BUILD"
      ]
    },
    "eTag": {
      "type": [
        "string",
        "null"
      ]
    },
    "replayed": {
      "type": "boolean"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}