Adobe · Schema

PageRange

Specifies a range of pages in a PDF document.

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

Properties

Name Type Description
start integer The starting page number (1-based).
end integer The ending page number (1-based, inclusive).
View JSON Schema on GitHub

JSON Schema

adobe-pdf-services-page-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PageRange",
  "type": "object",
  "description": "Specifies a range of pages in a PDF document.",
  "properties": {
    "start": {
      "type": "integer",
      "description": "The starting page number (1-based)."
    },
    "end": {
      "type": "integer",
      "description": "The ending page number (1-based, inclusive)."
    }
  }
}