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

23 lines
733 B
JSON

{
"type": "object",
"properties": {
"draft_text": {
"type": "string",
"description": "Dataset draft text. 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"
},
"base_timestamp": {"type": "integer"},
"timestamp_step_ms": {"type": "integer", "minimum": 1, "default": 60000},
"default_request_id": {"type": "string", "default": "aabbccdd"}
}
}