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-pagerange-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PageRange",
  "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).",
      "minimum": 1,
      "examples": [
        1
      ]
    },
    "end": {
      "type": "integer",
      "description": "The ending page number (1-based, inclusive).",
      "minimum": 1,
      "examples": [
        5
      ]
    }
  }
}