Adobe · Schema

RotatePagesRequest

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

Properties

Name Type Description
assetID string The asset ID of the PDF containing pages to rotate.
pageActions array Rotation actions to apply to page ranges.
View JSON Schema on GitHub

JSON Schema

adobe-rotatepagesrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RotatePagesRequest",
  "title": "RotatePagesRequest",
  "type": "object",
  "required": [
    "assetID",
    "pageActions"
  ],
  "properties": {
    "assetID": {
      "type": "string",
      "description": "The asset ID of the PDF containing pages to rotate.",
      "example": "500123"
    },
    "pageActions": {
      "type": "array",
      "description": "Rotation actions to apply to page ranges.",
      "items": {
        "type": "object",
        "required": [
          "pageRanges",
          "rotation"
        ],
        "properties": {
          "pageRanges": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PageRange"
            }
          },
          "rotation": {
            "type": "integer",
            "description": "The rotation angle in degrees (clockwise).",
            "enum": [
              90,
              180,
              270
            ]
          }
        }
      },
      "example": []
    }
  }
}