{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.baseItemVersion", "title": "microsoft.graph.baseItemVersion", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "baseItemVersion", "required": [ "@odata.type" ], "type": "object", "properties": { "lastModifiedBy": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.identitySet" }, { "type": "object", "nullable": true } ], "description": "Identity of the user which last modified the version. Read-only." }, "lastModifiedDateTime": { "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$", "type": "string", "description": "Date and time the version was last modified. Read-only.", "format": "date-time", "nullable": true }, "publication": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.publicationFacet" }, { "type": "object", "nullable": true } ], "description": "Indicates the publication status of this particular version. Read-only." }, "@odata.type": { "type": "string" } }, "discriminator": { "propertyName": "@odata.type", "mapping": { "#microsoft.graph.driveItemVersion": "#/components/schemas/microsoft.graph.driveItemVersion", "#microsoft.graph.listItemVersion": "#/components/schemas/microsoft.graph.listItemVersion", "#microsoft.graph.documentSetVersion": "#/components/schemas/microsoft.graph.documentSetVersion" } } } ] }