Hedera · Schema
Schedule
Distributed LedgerBlockchainDLTHashgraphTransactionsTokensNFTsSmart ContractsEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| admin_key | object | |
| consensus_timestamp | object | |
| creator_account_id | object | |
| deleted | boolean | |
| executed_timestamp | object | |
| expiration_time | object | |
| memo | string | |
| payer_account_id | object | |
| schedule_id | object | |
| signatures | array | |
| transaction_body | string | |
| wait_for_expiry | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/hedera/refs/heads/main/json-schema/Schedule.json",
"title": "Schedule",
"type": "object",
"properties": {
"admin_key": {
"$ref": "#/components/schemas/Key"
},
"consensus_timestamp": {
"$ref": "#/components/schemas/Timestamp"
},
"creator_account_id": {
"$ref": "#/components/schemas/EntityId"
},
"deleted": {
"type": "boolean",
"example": false
},
"executed_timestamp": {
"$ref": "#/components/schemas/TimestampNullable"
},
"expiration_time": {
"$ref": "#/components/schemas/TimestampNullable"
},
"memo": {
"type": "string",
"example": "created on 02/10/2021"
},
"payer_account_id": {
"$ref": "#/components/schemas/EntityId"
},
"schedule_id": {
"$ref": "#/components/schemas/EntityId"
},
"signatures": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ScheduleSignature"
}
},
"transaction_body": {
"type": "string",
"format": "byte",
"example": "Kd6tvu8="
},
"wait_for_expiry": {
"type": "boolean"
}
}
}