{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ContentHistory", "title": "ContentHistory", "required": [ "latest" ], "type": "object", "nullable": true, "properties": { "latest": { "type": "boolean", "example": true }, "createdBy": { "$ref": "#/components/schemas/User" }, "ownedBy": { "$ref": "#/components/schemas/User" }, "lastOwnedBy": { "$ref": "#/components/schemas/User" }, "createdDate": { "type": "string", "format": "date-time", "example": "2026-01-15T10:30:00Z" }, "lastUpdated": { "$ref": "#/components/schemas/Version" }, "previousVersion": { "$ref": "#/components/schemas/Version" }, "contributors": { "type": "object", "properties": { "publishers": { "$ref": "#/components/schemas/UsersUserKeys" } }, "example": "example_value" }, "nextVersion": { "$ref": "#/components/schemas/Version" }, "_expandable": { "type": "object", "properties": { "lastUpdated": { "type": "string" }, "previousVersion": { "type": "string" }, "contributors": { "type": "string" }, "nextVersion": { "type": "string" }, "ownedBy": { "type": "string" }, "lastOwnedBy": { "type": "string" } }, "example": "example_value" }, "_links": { "$ref": "#/components/schemas/GenericLinks" } } }