{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "Properties of the input",
    "properties": {
        "description": {
            "description": "Human readable description of the input",
            "type": "string"
        },
        "name": {
            "description": "Human readable name for the input",
            "type": "string"
        }
    },
    "required": [
        "name",
        "description"
    ],
    "title": "Input properties resource",
    "type": "object"
}
