123456789101112131415161718 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "title": "prepareTicketParameters",
- "type": "object",
- "properties": {
- "address": {
- "$ref": "address",
- "description": "The address of the account that is creating the transaction."
- },
- "ticketCount": {
- "type": "number",
- "description": "The number of tickets to be created."
- },
- "instructions": {"$ref": "instructions"}
- },
- "additionalProperties": false,
- "required": ["address", "ticketCount"]
- }
|