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-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 from a PDF document",
  "properties": {
    "start": {
      "type": "integer",
      "description": "Starting page number (1-indexed)",
      "example": 1
    },
    "end": {
      "type": "integer",
      "description": "Ending page number (1-indexed, inclusive)",
      "example": 5
    }
  }
}