mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 11:46:16 +08:00
24 lines
608 B
JSON
24 lines
608 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Command template schema for workflow tools",
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"type": "object",
|
|
"description": "Tool template",
|
|
"required": ["base"],
|
|
"properties": {
|
|
"base": {
|
|
"type": "string",
|
|
"description": "Base command with placeholders like {domain}, {output-file}"
|
|
},
|
|
"optional": {
|
|
"type": "object",
|
|
"description": "Optional parameters and their flags",
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|