Schema input-properties-schema.json
Resolve referenced schemas (may reorder keys)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"description": "Properties of the input",
"title": "Input properties resource",
"required":[
"name",
"description"
],
"properties": {
"name":{
"type": "string",
"description": "Human readable name for the input"
},
"description":{
"type": "string",
"description": "Human readable description of the input"
}
}
}