Cardano · Schema

Script Datum

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3

Properties

Name Type Description
json_value object JSON content of the datum
View JSON Schema on GitHub

JSON Schema

script-datum.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/script_datum",
  "title": "Script Datum",
  "type": "object",
  "properties": {
    "json_value": {
      "type": "object",
      "additionalProperties": true,
      "description": "JSON content of the datum"
    }
  },
  "required": [
    "json_value"
  ],
  "example": {
    "json_value": {
      "int": 42
    }
  }
}