{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-qldb/refs/heads/main/json-schema/amazon-qldb-ledger-summary-schema.json", "title": "LedgerSummary", "description": "Information about a ledger, including its name, state, and when it was created.", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/LedgerName" }, { "description": "The name of the ledger." } ] }, "State": { "allOf": [ { "$ref": "#/components/schemas/LedgerState" }, { "description": "The current status of the ledger." } ] }, "CreationDateTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date and time, in epoch time format, when the ledger was created. (Epoch time format is the number of seconds elapsed since 12:00:00 AM January 1, 1970 UTC.)" } ] } } }