Adobe · Schema

ReplacePagesRequest

Fortune 1000AnalyticsCreative CloudDigital Asset ManagementDocument ServicesE-CommerceE-SignaturesExperience CloudGenerative AIMarketingPDFWork Management

Properties

Name Type Description
baseAssetID string The asset ID of the base PDF.
assetsToReplace array Assets and page specifications for replacement.
View JSON Schema on GitHub

JSON Schema

adobe-replacepagesrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReplacePagesRequest",
  "title": "ReplacePagesRequest",
  "type": "object",
  "required": [
    "baseAssetID",
    "assetsToReplace"
  ],
  "properties": {
    "baseAssetID": {
      "type": "string",
      "description": "The asset ID of the base PDF.",
      "example": "500123"
    },
    "assetsToReplace": {
      "type": "array",
      "description": "Assets and page specifications for replacement.",
      "items": {
        "type": "object",
        "required": [
          "assetID",
          "basePagesRange"
        ],
        "properties": {
          "assetID": {
            "type": "string",
            "description": "The asset ID of the replacement PDF."
          },
          "basePagesRange": {
            "$ref": "#/components/schemas/PageRange"
          },
          "assetPagesRange": {
            "$ref": "#/components/schemas/PageRange"
          }
        }
      },
      "example": []
    }
  }
}