responsible-disclosure-evidence-index / schemas /disclosure_receipt_rule_index.schema.json
cjc0013's picture
Update private responsible disclosure staging indexes
d511e0b verified
Raw
History Blame
2.31 kB
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"as_of_date": {
"type": "string"
},
"clock_state_counts": {
"additionalProperties": {
"type": "integer"
},
"type": "object"
},
"details_state": {
"type": "string"
},
"generated_utc": {
"type": "string"
},
"ledger_link_count": {
"type": "integer"
},
"no_response_days": {
"type": "integer"
},
"no_response_review_date_max": {
"type": "string"
},
"no_response_review_date_min": {
"type": "string"
},
"no_response_window_elapsed_review_required_count": {
"type": "integer"
},
"paused_or_review_needed_acknowledgement_present_count": {
"type": "integer"
},
"pending_no_response_window_count": {
"type": "integer"
},
"public_safe_note": {
"type": "string"
},
"receipt_count": {
"type": "integer"
},
"record_id": {
"type": "string"
},
"record_type": {
"type": "string"
},
"responsible_disclosure_rule": {
"type": "string"
},
"sent_date_max": {
"type": "string"
},
"sent_date_min": {
"type": "string"
},
"source_receipt_kind": {
"type": "string"
},
"source_sha256": {
"type": "string"
},
"source_state": {
"type": "string"
},
"visibility_policy": {
"type": "string"
},
"visibility_profile": {
"type": "string"
}
},
"required": [
"record_id",
"record_type",
"source_receipt_kind",
"source_state",
"visibility_profile",
"visibility_policy",
"details_state",
"responsible_disclosure_rule",
"no_response_days",
"as_of_date",
"receipt_count",
"ledger_link_count",
"sent_date_min",
"sent_date_max",
"no_response_review_date_min",
"no_response_review_date_max",
"clock_state_counts",
"no_response_window_elapsed_review_required_count",
"pending_no_response_window_count",
"paused_or_review_needed_acknowledgement_present_count",
"source_sha256",
"public_safe_note",
"generated_utc"
],
"title": "Responsible disclosure receipt timing summary row",
"type": "object"
}