Files
zk-data-agent/skills/product-data/schemas/normalize_dataset_draft.input.schema.json
T
2026-05-11 19:56:29 +08:00

41 lines
1.5 KiB
JSON

{
"type": "object",
"properties": {
"draft_text": {
"type": "string",
"description": "Dataset draft text. Each case should include complex: true/false. Provide exactly one of draft_text or draft_path."
},
"draft_path": {
"type": "string",
"description": "Path to UTF-8 dataset draft text. Provide exactly one of draft_text or draft_path."
},
"batch_id": {"type": "string", "default": "aabbccdd"},
"source_type": {
"type": "string",
"enum": ["generated", "online", "manual", "mixed"],
"default": "generated"
},
"confirmed_plan_id": {
"type": "string",
"description": "Required when source_type is generated; returned by data_agent_confirm_generation_plan."
},
"base_timestamp": {"type": "integer"},
"timestamp_step_ms": {"type": "integer", "minimum": 1, "default": 60000},
"default_request_id": {"type": "string", "default": "aabbccdd"},
"records_output_path": {
"type": "string",
"description": "Optional JSONL output path for normalized records. In platform runtime, scratchpad/... and output/... are routed to the current session."
},
"append": {
"type": "boolean",
"description": "Append normalized records to records_output_path instead of overwriting it.",
"default": false
},
"return_records": {
"type": "boolean",
"description": "Whether to include records in stdout. Prefer false when records_output_path is set for large batches.",
"default": true
}
}
}