Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
2.5 KiB

3 years ago
{
3 years ago
"$schema": "http://json-schema.org/draft-04/schema#",
3 years ago
"$id": "https://example.com/product.schema.json",
"title": "Form",
"description": "A form",
"type": "object",
"properties": {
"form_type": {
"description": "",
"type": "string"
},
"start_year": {
"description": "",
3 years ago
"type": "integer",
"optional": "true"
3 years ago
},
"end_year": {
"description": "",
3 years ago
"type": "integer"
3 years ago
},
"sections": {
"description": "",
"type": "object",
"patternProperties": {
"^[0-9]+$": {
"description": "",
"type": "string"
},
"label": {
"description": "",
"type": "string"
},
"subsections": {
3 years ago
"description": "",
"type": "object",
"patternProperties": {
"^[0-9]+$": {
"description": "",
"type": "string"
},
"label": {
"description": "",
"type": "string"
},
"subsections": {
"description": "",
"type": "object",
"patternProperties": {
"^[0-9]+$": {
"description": "",
"type": "string"
},
"label": {
"description": "",
"type": "string"
},
"pages": {
"description": "",
"type": "object",
"patternProperties": {
"^[0-9]+$": {
"description": "",
"type": "string"
}
},
"questions": {
"description": "",
"type": "object",
"patternProperties": {
"^[0-9]+$": {
"description": "",
"type": "string"
},
"conditional_for": {
"type": "object",
"properties": ""
}
}
},
"conditional_route_to": {
"type": "object",
"properties": ""
},
"default_next_page": {
"type" : "string"
}
}
}
}
}
3 years ago
}
}
}
}
}