addedInput schema / properties / escalation
Added value: +{
+ "additionalProperties": false,
+ "description": "Structured agent-reported unfinished work requiring an explicit owner confirmation before any commercial offer.",
+ "properties": {
+ "allowed_input_labels": {
+ "items": {
+ "maxLength": 100,
+ "minLength": 3,
+ "type": "string"
+ },
+ "maxItems": 12,
+ "type": "array"
+ },
+ "attempt_count": {
+ "maximum": 1000,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "attempted_artifacts": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "label": {
+ "maxLength": 100,
+ "minLength": 3,
+ "type": "string"
+ },
+ "public_url": {
+ "format": "uri",
+ "maxLength": 2048,
+ "type": "string"
+ },
+ "sha256": {
+ "pattern": "^[a-f0-9]{64}$",
+ "type": "string"
+ }
+ },
+ "required": [
+ "label"
+ ],
+ "type": "object"
+ },
+ "maxItems": 10,
+ "minItems": 1,
+ "type": "array"
+ },
+ "done_when": {
+ "items": {
+ "maxLength": 500,
+ "minLength": 20,
+ "type": "string"
+ },
+ "maxItems": 10,
+ "minItems": 1,
+ "type": "array"
+ },
+ "elapsed_minutes": {
+ "maximum": 525600,
+ "minimum": 1,
+ "type": "integer"
+ },
+ "expected_artifact": {
+ "maxLength": 1000,
+ "minLength": 20,
+ "type": "string"
+ },
+ "material_constraints": {
+ "items": {
+ "maxLength": 500,
+ "minLength": 3,
+ "type": "string"
+ },
+ "maxItems": 10,
+ "type": "array"
+ },
+ "owner_feedback": {
+ "maxLength": 1000,
+ "minLength": 20,
+ "type": "string"
+ },
+ "requested_authority": {
+ "items": {
+ "enum": [
+ "read_public_data",
+ "use_owner_supplied_inputs",
+ "contact_supplier",
+ "procure_execution"
+ ],
+ "type": "string"
+ },
+ "maxItems": 4,
+ "type": "array"
+ },
+ "unresolved": {
+ "const": true,
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "expected_artifact",
+ "attempted_artifacts",
+ "owner_feedback",
+ "unresolved",
+ "attempt_count",
+ "elapsed_minutes",
+ "done_when",
+ "material_constraints",
+ "allowed_input_labels",
+ "requested_authority"
+ ],
+ "type": "object"
+}