File size: 590 Bytes
7bd147c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"acknowledgement_state": {
"type": "string"
},
"contact_route_type": {
"type": "string"
},
"contacted_utc": {
"type": "string"
},
"public_reference_url": {
"type": "string"
},
"record_id": {
"type": "string"
}
},
"required": [
"record_id",
"contact_route_type",
"contacted_utc",
"acknowledgement_state"
],
"title": "Responsible disclosure contact receipt row",
"type": "object"
}
|