Hedera · Schema
TokenAirdrop
Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| amount | integer | |
| receiver_id | object | |
| sender_id | object | |
| serial_number | integernull | |
| timestamp | object | |
| token_id | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/TokenAirdrop.json",
"title": "TokenAirdrop",
"type": "object",
"properties": {
"amount": {
"format": "int64",
"type": "integer"
},
"receiver_id": {
"$ref": "#/components/schemas/EntityId"
},
"sender_id": {
"$ref": "#/components/schemas/EntityId"
},
"serial_number": {
"example": 1,
"format": "int64",
"type": [
"integer",
"null"
]
},
"timestamp": {
"$ref": "#/components/schemas/TimestampRange"
},
"token_id": {
"$ref": "#/components/schemas/EntityId"
}
},
"example": {
"amount": 10,
"receiver_id": "0.0.15",
"sender_id": "0.0.10",
"serial_number": null,
"timestamp": {
"from": "1651560386.060890949",
"to": "1651560386.661997287"
},
"token_id": "0.0.99"
},
"required": [
"amount",
"receiver_id",
"sender_id",
"timestamp",
"token_id"
]
}