{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/parea/main/json-schema/BootstrapEvalFullResultSchema.json", "title": "BootstrapEvalFullResultSchema", "description": "Schema for BootstrapEvalFullResultSchema", "properties": { "stats": { "additionalProperties": { "type": "number" }, "type": "object", "title": "Stats", "description": "Bootstrapped eval stats" }, "experiment_uuid": { "type": "string", "title": "Experiment Uuid", "description": "Experiment UUID" }, "source_code": { "title": "Source Code", "description": "Bootstrapped eval source code", "type": "string", "nullable": true }, "status": { "allOf": [ { "$ref": "#/components/schemas/BootstrappedEvalStatus" } ], "description": "Bootstrapped eval status" }, "output_target_pairs": { "items": { "$ref": "#/components/schemas/OutputTargetPairSchema" }, "type": "array", "title": "Output Target Pairs", "description": "Output target pairs", "default": [] } }, "type": "object" }