addedInput schema / properties / correction_history
Added value: +{
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "action": {
+ "maxLength": 2000,
+ "minLength": 1,
+ "pattern": "\\S",
+ "type": "string"
+ },
+ "contract": {
+ "const": "a2a2p.actualization-plan-recovery"
+ },
+ "contract_version": {
+ "const": "0.1.0-draft"
+ },
+ "entry_digest": {
+ "pattern": "^[a-f0-9]{64}$",
+ "type": "string"
+ },
+ "field": {
+ "maxLength": 2000,
+ "minLength": 1,
+ "pattern": "\\S",
+ "type": "string"
+ },
+ "previous_entry_digest": {
+ "pattern": "^[a-f0-9]{64}$",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "reason_code": {
+ "enum": [
+ "authority_promotion",
+ "contract_mismatch",
+ "correction_history_invalid",
+ "dependency_cycle",
+ "duplicate_entity_id",
+ "evidence_kind_invalid",
+ "evidence_reference_missing",
+ "input_too_large",
+ "invalid_plan_shape",
+ "source_binding_mismatch",
+ "unknown_entity_reference",
+ "upstream_validation_failed"
+ ]
+ },
+ "rejected_plan_digest": {
+ "pattern": "^[a-f0-9]{64}$",
+ "type": "string"
+ },
+ "sequence": {
+ "maximum": 100,
+ "minimum": 1,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "contract",
+ "contract_version",
+ "sequence",
+ "reason_code",
+ "field",
+ "action",
+ "rejected_plan_digest",
+ "previous_entry_digest",
+ "entry_digest"
+ ],
+ "type": "object"
+ },
+ "maxItems": 100,
+ "type": "array"
+}
changedInput schema / properties / plan / x-a2a2p-rejection-reasons
Previous value: -[
- "authority_promotion",
- "contract_mismatch",
- "dependency_cycle",
- "duplicate_entity_id",
- "evidence_kind_invalid",
- "evidence_reference_missing",
- "input_too_large",
- "invalid_plan_shape",
- "source_binding_mismatch",
- "unknown_entity_reference",
- "upstream_validation_failed"
-]New value: +[
+ "authority_promotion",
+ "contract_mismatch",
+ "correction_history_invalid",
+ "dependency_cycle",
+ "duplicate_entity_id",
+ "evidence_kind_invalid",
+ "evidence_reference_missing",
+ "input_too_large",
+ "invalid_plan_shape",
+ "source_binding_mismatch",
+ "unknown_entity_reference",
+ "upstream_validation_failed"
+]