43 lines
787 B
JSON
43 lines
787 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema://formula/EXECUTION_PLAN_COMPILER_V1",
|
|
"title": "EXECUTION_PLAN_COMPILER_V1",
|
|
"type": "object",
|
|
"properties": {
|
|
"formula_id": {
|
|
"const": "EXECUTION_PLAN_COMPILER_V1"
|
|
},
|
|
"owner": {
|
|
"type": "string"
|
|
},
|
|
"status": {
|
|
"type": "string"
|
|
},
|
|
"inputs": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"outputs": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"formula_id",
|
|
"owner",
|
|
"status",
|
|
"inputs",
|
|
"outputs"
|
|
],
|
|
"x_formula_inputs": [
|
|
"order_capacity_krw",
|
|
"revalidation_snapshot",
|
|
"baseline_snapshot"
|
|
],
|
|
"x_formula_outputs": []
|
|
}
|