PageRange

Specifies a range of pages from a PDF document

CreativeDesignGraphicsPhotographyVideo

Properties

Name Type Description
start integer Starting page number (1-indexed)
end integer Ending page number (1-indexed, inclusive)
View JSON Schema on GitHub

JSON Schema

adobe-creative-suite-pdf-services-page-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-creative-suite/refs/heads/main/json-schema/adobe-creative-suite-pdf-services-page-range-schema.json",
  "title": "PageRange",
  "description": "Specifies a range of pages from a PDF document",
  "type": "object",
  "properties": {
    "start": {
      "type": "integer",
      "description": "Starting page number (1-indexed)",
      "example": 1
    },
    "end": {
      "type": "integer",
      "description": "Ending page number (1-indexed, inclusive)",
      "example": 5
    }
  }
}