{
    "type": "object",
    "properties": {
        "type": {
            "$ref": "https://raw.githubusercontent.com/acrylplatform/acryl-transactions/master/src/schemas/IIssueTransaction.json#/definitions/TRANSACTION_TYPE.ISSUE"
        },
        "name": {
            "minLength": 4,
            "maxLength": 16,
            "type": "string"
        },
        "description": {
            "maxLength": 1000,
            "type": "string"
        },
        "decimals": {
            "type": "number"
        },
        "quantity": {
            "$ref": "https://raw.githubusercontent.com/acrylplatform/acryl-transactions/master/src/schemas/IIssueTransaction.json#/definitions/LONG"
        },
        "reissuable": {
            "type": "boolean"
        },
        "script": {
            "type": "string"
        },
        "timestamp": {
            "type": "number"
        },
        "fee": {
            "$ref": "https://raw.githubusercontent.com/acrylplatform/acryl-transactions/master/src/schemas/IIssueTransaction.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"
        },
        "chainId": {
            "description": "Network byte.\nE.g.,\n65 is used for Acryl mainnet, 75 for Acryl testnet",
            "type": "number"
        }
    },
    "required": [
        "chainId",
        "decimals",
        "description",
        "fee",
        "name",
        "proofs",
        "quantity",
        "reissuable",
        "senderPublicKey",
        "timestamp",
        "type",
        "version"
    ],
    "definitions": {
        "TRANSACTION_TYPE.ISSUE": {
            "type": "number",
            "enum": [
                3
            ]
        },
        "LONG": {
            "type": [
                "number"
            ]
        }
    },
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "https://raw.githubusercontent.com/acrylplatform/acryl-transactions/master/src/schemas/IIssueTransaction.json"
}
