| { | |
| "title": "PPG_record_v1", | |
| "type": "object", | |
| "required": [ | |
| "id", | |
| "track", | |
| "technique", | |
| "inputs", | |
| "prompt_packet", | |
| "model_output_raw", | |
| "validators", | |
| "label", | |
| "meta_optimization" | |
| ], | |
| "properties": { | |
| "id": { | |
| "type": "string" | |
| }, | |
| "track": { | |
| "type": "string" | |
| }, | |
| "technique": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "inputs": { | |
| "type": "object" | |
| }, | |
| "prompt_packet": { | |
| "type": "object" | |
| }, | |
| "model_output_raw": { | |
| "type": "string" | |
| }, | |
| "validators": { | |
| "type": "object" | |
| }, | |
| "label": { | |
| "type": "string", | |
| "enum": [ | |
| "success", | |
| "failure" | |
| ] | |
| }, | |
| "failure": { | |
| "type": [ | |
| "object", | |
| "null" | |
| ] | |
| }, | |
| "repair": { | |
| "type": [ | |
| "object", | |
| "null" | |
| ] | |
| }, | |
| "meta_optimization": { | |
| "type": "object" | |
| } | |
| } | |
| } |