responsible-disclosure-evidence-index / schemas /finding_index.schema.json
cjc0013's picture
Move elapsed disclosures into private disclosure lane
a68859a verified
Raw
History Blame
1.74 kB
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"acknowledgement_received": {
"type": "boolean"
},
"advisory_url": {
"type": "string"
},
"affected_area": {
"type": "string"
},
"disclosure_path": {
"type": "string"
},
"disclosure_sha256": {
"type": "string"
},
"disclosure_state": {
"description": "Examples: acknowledged_engaged, cleared_by_maintainer, public_fix_available, no_response_two_week_window_elapsed.",
"type": "string"
},
"first_disclosure_email_utc": {
"type": "string"
},
"no_response_publication_eligible_utc": {
"type": "string"
},
"project": {
"type": "string"
},
"proof_manifest_sha256": {
"type": "string"
},
"public_action_state": {
"type": "string"
},
"public_safe_summary": {
"type": "string"
},
"published_utc": {
"type": "string"
},
"record_id": {
"type": "string"
},
"record_type": {
"type": "string"
},
"severity_estimate": {
"type": "string"
},
"technical_packet_state": {
"type": "string"
},
"validation_summary": {
"type": "string"
},
"visible_utc": {
"type": "string"
}
},
"required": [
"record_id",
"record_type",
"project",
"disclosure_state",
"public_safe_summary",
"validation_summary",
"proof_manifest_sha256",
"disclosure_path",
"disclosure_sha256",
"technical_packet_state",
"public_action_state",
"visible_utc",
"published_utc"
],
"title": "Responsible disclosure finding index row",
"type": "object"
}