{
    "type": "object",
    "properties": {
        "type": {
            "$ref": "https://raw.githubusercontent.com/acrylplatform/acryl-transactions/master/src/schemas/ILeaseTransaction.json#/definitions/TRANSACTION_TYPE.LEASE"
        },
        "amount": {
            "$ref": "https://raw.githubusercontent.com/acrylplatform/acryl-transactions/master/src/schemas/ILeaseTransaction.json#/definitions/LONG"
        },
        "recipient": {
            "type": "string"
        },
        "timestamp": {
            "type": "number"
        },
        "fee": {
            "$ref": "https://raw.githubusercontent.com/acrylplatform/acryl-transactions/master/src/schemas/ILeaseTransaction.json#/definitions/LONG"
        },
        "version": {
            "type": "number"
        },
        "proofs": {
            "description": "ITransaction signatures",
            "minItems": 0,
            "maxItems": 8,
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "senderPublicKey": {
            "description": "Account public key. This account will pay fee and this account's script will be executed if exists",
            "type": "string"
        }
    },
    "required": [
        "amount",
        "fee",
        "proofs",
        "recipient",
        "senderPublicKey",
        "timestamp",
        "type",
        "version"
    ],
    "definitions": {
        "TRANSACTION_TYPE.LEASE": {
            "type": "number",
            "enum": [
                8
            ]
        },
        "LONG": {
            "type": [
                "number"
            ]
        }
    },
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://raw.githubusercontent.com/acrylplatform/acryl-transactions/master/src/schemas/ILeaseTransaction.json"
}
