feat(web): add IwoooS queue review checklist

This commit is contained in:
Your Name
2026-05-20 10:02:22 +08:00
parent 9f740bb0a1
commit 0b8514ef8d
11 changed files with 608 additions and 8 deletions

View File

@@ -42,6 +42,7 @@
"host_owner_decision_record_formal_candidate_review_checklist_items",
"host_owner_decision_record_formal_candidate_review_outcome_lanes",
"host_owner_decision_record_formal_record_queue_packets",
"host_owner_decision_record_formal_record_queue_review_checklist_items",
"frontend_surface_coverage_groups",
"evidence_refs",
"allowed_frontend_outputs",
@@ -123,6 +124,7 @@
"host_owner_decision_record_formal_candidate_review_checklist_item_count",
"host_owner_decision_record_formal_candidate_review_outcome_lane_count",
"host_owner_decision_record_formal_record_queue_packet_count",
"host_owner_decision_record_formal_record_queue_review_checklist_item_count",
"action_buttons_allowed"
],
"properties": {
@@ -280,6 +282,10 @@
"host_owner_decision_record_formal_record_queue_packet_count": {
"type": "integer",
"const": 8
},
"host_owner_decision_record_formal_record_queue_review_checklist_item_count": {
"type": "integer",
"const": 8
}
},
"additionalProperties": false
@@ -2585,6 +2591,103 @@
},
"additionalProperties": false
}
},
"host_owner_decision_record_formal_record_queue_review_checklist_items": {
"type": "array",
"minItems": 8,
"items": {
"type": "object",
"required": [
"item_id",
"display_order",
"source_packet_id",
"review_condition",
"guardrail",
"display_mode",
"formal_record_queue_review_passed_count",
"formal_record_queue_enqueued_count",
"decision_record_created",
"owner_decision_received_count",
"owner_decision_accepted_count",
"owner_approval_record_created",
"runtime_gate_opened",
"raw_payload_allowed",
"secret_value_collection_allowed",
"runtime_execution_authorized",
"action_buttons_allowed",
"not_authorization"
],
"properties": {
"item_id": {
"type": "string"
},
"display_order": {
"type": "integer",
"minimum": 1
},
"source_packet_id": {
"type": "string"
},
"review_condition": {
"type": "string"
},
"guardrail": {
"type": "string"
},
"display_mode": {
"const": "owner_decision_record_formal_record_queue_review_checklist_only"
},
"formal_record_queue_review_passed_count": {
"type": "integer",
"const": 0
},
"formal_record_queue_enqueued_count": {
"type": "integer",
"const": 0
},
"decision_record_created": {
"type": "boolean",
"const": false
},
"owner_decision_received_count": {
"type": "integer",
"const": 0
},
"owner_decision_accepted_count": {
"type": "integer",
"const": 0
},
"owner_approval_record_created": {
"type": "boolean",
"const": false
},
"runtime_gate_opened": {
"type": "boolean",
"const": false
},
"raw_payload_allowed": {
"type": "boolean",
"const": false
},
"secret_value_collection_allowed": {
"type": "boolean",
"const": false
},
"runtime_execution_authorized": {
"type": "boolean",
"const": false
},
"action_buttons_allowed": {
"type": "boolean",
"const": false
},
"not_authorization": {
"type": "boolean",
"const": true
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false