P_P_GHOST_1Million / schema /ppg_record.schema.json
gss1147's picture
Upload ppg_record.schema.json
37dbda1 verified
raw
history blame contribute delete
963 Bytes
{
"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"
}
}
}