Amazon QLDB · Schema

ValueHolder

A structure that can contain a value in multiple encoding formats.

BlockchainDatabaseLedger

Properties

Name Type Description
IonText object
View JSON Schema on GitHub

JSON Schema

amazon-qldb-value-holder-schema.json Raw ↑
{
  "$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-value-holder-schema.json",
  "title": "ValueHolder",
  "description": "A structure that can contain a value in multiple encoding formats.",
  "type": "object",
  "properties": {
    "IonText": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IonText"
        },
        {
          "description": "An Amazon Ion plaintext value contained in a <code>ValueHolder</code> structure."
        }
      ]
    }
  }
}