1234567891011121314151617181920212223242526272829 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "title": "escrowExecution",
- "link": "escrow-execution",
- "type": "object",
- "properties": {
- "memos": {"$ref": "memos"},
- "owner": {
- "$ref": "address",
- "description": "The address of the owner of the escrow to execute."
- },
- "escrowSequence": {
- "$ref": "sequence",
- "description": "The [account sequence number](#account-sequence-number) of the [Escrow Creation](#escrow-creation) transaction for the escrow to execute."
- },
- "condition": {
- "type": "string",
- "description": "A hex value representing a [PREIMAGE-SHA-256 crypto-condition](https://tools.ietf.org/html/draft-thomas-crypto-conditions-02#section-8.1). This must match the original `condition` from the escrow creation transaction.",
- "pattern": "^[A-F0-9]{0,256}$"
- },
- "fulfillment": {
- "type": "string",
- "description": "A hex value representing the [PREIMAGE-SHA-256 crypto-condition](https://tools.ietf.org/html/draft-thomas-crypto-conditions-02#section-8.1) fulfillment for `condition`.",
- "pattern": "^[A-F0-9]+$"
- }
- },
- "required": ["owner", "escrowSequence"],
- "additionalProperties": false
- }
|