{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SnapshotDetails", "title": "SnapshotDetails", "type": "object", "required": [ "SnapshotName", "SnapshotStatus", "ApplicationVersionId" ], "properties": { "SnapshotName": { "allOf": [ { "$ref": "#/components/schemas/SnapshotName" }, { "description": "The identifier for the application snapshot." } ] }, "SnapshotStatus": { "allOf": [ { "$ref": "#/components/schemas/SnapshotStatus" }, { "description": "The status of the application snapshot." } ] }, "ApplicationVersionId": { "allOf": [ { "$ref": "#/components/schemas/ApplicationVersionId" }, { "description": "The current application version ID when the snapshot was created." } ] }, "SnapshotCreationTimestamp": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The timestamp of the application snapshot." } ] } }, "description": "Provides details about a snapshot of application state." }