{
    "$schema": "http://json-schema.org/schema",
    "$id": "SchematicsPesapalAngularInstall",
    "title": "Pesapal Angular Install Options Schema",
    "type": "object",
    "properties": {
        "consumer_key": {
            "type": "string",
            "minLength": 0,
            "maxLength": 40,
            "default": null,
            "x-prompt": "What is your Pesapal consumer key?"
        },
        "consumer_secret": {
            "type": "string",
            "minLength": 0,
            "maxLength": 40,
            "default": null,
            "x-prompt": "What is your Pesapal consumer secret?"
        },
        "ipn_id": {
            "type": "string",
            "minLength": 0,
            "default": null,
            "x-prompt": "What is your IPN ID?"
        }
    },
    "required": [
        "consumer_key",
        "consumer_secret",
        "ipn_id"
    ]
}