"As a Curator, I want to get metadata about a revision of a page, so that I can understand what was changed."
GET /revision/{id}/bare
Return the revision of a page without content.
Request payload: none
Status code:
200 - OK
403 - Not authorized
404 - No such revision
Body: JSON, object with following fields:
id: revision ID
page: Object with these fields
- id: ID of the page
- title: current title of the page (might have been changed)
user: user who made the change, object with these fields
- id: ID of the user or null for anonymous
- name: name of the user or unique identifier for anonymous
comment: User comment ("edit summary") describing the change that generated this revision
timestamp: time the revision was made
size: size of the revision in "bogobytes" (as from DB, usually bytes)
delta: change from previous revision in "bogobytes" (as from DB, usually bytes)