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

16 lines
402 B
JSON

{
"type": "object",
"properties": {
"records": {"type": "array"},
"records_path": {"type": "string"},
"output_path": {"type": "string"},
"output_dir": {"type": "string"},
"require_validation_ok": {"type": "boolean", "default": true},
"overwrite": {"type": "boolean", "default": true}
},
"anyOf": [
{"required": ["records"]},
{"required": ["records_path"]}
]
}