responsible-disclosure-evidence-index / schemas /contact_receipt.schema.json
cjc0013's picture
Create empty responsible disclosure evidence lane
7bd147c verified
Raw
History Blame
590 Bytes
{
"$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"
}