{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ledger_update_request", "title": "ledger_update_request", "type": "object", "properties": { "name": { "type": "string", "description": "The name of the ledger." }, "description": { "type": "string", "description": "An optional free-form description for internal use.", "nullable": true }, "metadata": { "type": "object", "description": "Additional data represented as key-value pairs. Both the key and value must be strings.", "additionalProperties": { "type": "string" }, "example": { "key": "value", "foo": "bar", "modern": "treasury" } } } }