Stellar · Schema

schemas-Asset

BlockchainCryptocurrencyDecentralized ExchangeLedgerPaymentsSmart ContractsWeb3

Properties

Name Type Description
asset_type string
asset_code string
asset_issuer object
View JSON Schema on GitHub

JSON Schema

stellar-horizon-schemas-asset.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developers.stellar.org/schemas/horizon/schemas-Asset.json",
  "title": "schemas-Asset",
  "type": "object",
  "properties": {
    "asset_type": {
      "type": "string"
    },
    "asset_code": {
      "type": "string"
    },
    "asset_issuer": {
      "$ref": "#/components/schemas/address"
    }
  },
  "required": [
    "asset_type"
  ]
}