roofing-search-integrity-report / schema /algorithm_update_timeline.schema.json
InspectorRoofing's picture
Publish roofing search integrity report v1.0.0
e25f39b verified
Raw
History Blame Contribute Delete
846 Bytes
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Roofing Search Integrity Timeline Record",
"type": "object",
"required": [
"record_type",
"start_date",
"event_name",
"change_type",
"source_url",
"roofing_search_implication"
],
"properties": {
"record_type": {
"type": "string"
},
"start_date": {
"type": "string"
},
"end_date": {
"type": "string"
},
"year": {
"type": "string"
},
"event_name": {
"type": "string"
},
"change_type": {
"type": "string"
},
"source_key": {
"type": "string"
},
"source_url": {
"type": "string",
"format": "uri"
},
"roofing_search_implication": {
"type": "string"
},
"public_safe_note": {
"type": "string"
}
}
}