45 lines
858 B
JSON
45 lines
858 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "schema://formula/EXECUTION_CAPACITY_LADDER_V1",
|
|
"title": "EXECUTION_CAPACITY_LADDER_V1",
|
|
"type": "object",
|
|
"properties": {
|
|
"formula_id": {
|
|
"const": "EXECUTION_CAPACITY_LADDER_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": [
|
|
"planned_order_amount_krw",
|
|
"avg_trade_value_20d_krw",
|
|
"intraday_trade_value_krw",
|
|
"orderbook_top3_depth_krw",
|
|
"spread_bps"
|
|
],
|
|
"x_formula_outputs": []
|
|
}
|