pageEnd
pageEnd · Not mentioned by Google
Appears in
What is it?
The page number where a published work ends within a larger volume or issue. This property records the final page of an article, chapter, or section as it appears in print or PDF pagination.
Why this matters for AEO
When a user asks an AI engine for a specific journal article, the AI can return the exact page range alongside the title and DOI. A query like "where is the FRBR review by Smiraglia published?" gets a precise answer: pages 360 to 368 in Library Resources & Technical Services, rather than a vague citation.
What the specs say
Schema.org: Integer, Text. The page on which the work ends; for example "138" or "xvi". schema.org/pageEnd
Google: Not mentioned. No dedicated Google structured data page exists for ScholarlyArticle.
How to find your value
- Journal PDF — Footer or header of the last page of the article
- DOI metadata — CrossRef API response for the article DOI
- Publisher website — Article landing page, typically in the citation block
- BibTeX export — The
pagesfield (e.g.,pages = {360--368})
Format and code
The value is either an integer or a text string (for Roman numerals like "xvi").
{
"@context": "https://schema.org",
"@type": "ScholarlyArticle",
"name": "Be Careful What You Wish For: FRBR, Some Lacunae, A Review",
"author": "Smiraglia, Richard P.",
"pageStart": "360",
"pageEnd": "368"
}
Roman numeral example:
{
"@context": "https://schema.org",
"@type": "ScholarlyArticle",
"name": "Foreword",
"pageStart": "ix",
"pageEnd": "xvi"
}
Webflow implementation
Static pages
Add the page range in a JSON-LD script block in Page Settings > Custom Code (Before