Properties
| Name | Type | Description |
|---|---|---|
| revisionNumber | integer | The revision number. |
| publishedAt | string | The date and time the revision was published. |
| deleted | boolean | Whether this revision has been deleted. |
| current | boolean | Whether this is the current revision. |
| sizeInBytes | integer | The size of the revision in bytes. |
| publisher | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Revision",
"type": "object",
"properties": {
"revisionNumber": {
"type": "integer",
"description": "The revision number."
},
"publishedAt": {
"type": "string",
"description": "The date and time the revision was published."
},
"deleted": {
"type": "boolean",
"description": "Whether this revision has been deleted."
},
"current": {
"type": "boolean",
"description": "Whether this is the current revision."
},
"sizeInBytes": {
"type": "integer",
"description": "The size of the revision in bytes."
},
"publisher": {
"type": "object"
}
}
}