KeiSeiKit-1.0/_primitives/_rust/kei-task/atoms/schemas/search-output.json
Parfii-bot 0be354a920 KeiSeiKit-public — clean state
Single-commit clean baseline after security scrub of niche-tells,
project codenames, internal jargon, and contributor-email leaks.

Contents:
- 100 Rust crates (_primitives/_rust/)
- 37 agent manifests (_manifests/) + generated specs (_generated/)
- 67 user-invocable skills (skills/)
- 33 hooks (hooks/)
- Composition blocks (_blocks/)
- Documentation (docs/, README.md)
- TS adapter packages (_ts_packages/)
- Assembler (_assembler/)
- Roles (_roles/)
- Templates (_templates/)
- Forgejo CI (.forgejo/)

Author: Denis Parfionovich <info@greendragon.info>

License: see LICENSE.
2026-05-01 12:09:03 +08:00

52 lines
1.4 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "kei-task/atoms/schemas/search-output.json",
"title": "kei-task::search output",
"type": "object",
"required": ["results"],
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"required": ["id", "title", "status", "priority"],
"properties": {
"id": { "type": "integer", "minimum": 1 },
"title": { "type": "string" },
"description": { "type": "string" },
"status": { "type": "string" },
"priority": { "type": "string" },
"task_type": { "type": "string" },
"parent_id": { "type": "integer" },
"assigned_to": { "type": "string" },
"due_date": { "type": "integer" },
"completed_at": { "type": "integer" },
"created_at": { "type": "integer" },
"updated_at": { "type": "integer" }
},
"additionalProperties": false
}
}
},
"additionalProperties": false,
"examples": [
{
"results": [
{
"id": 42,
"title": "refactor router",
"description": "split monolith",
"status": "pending",
"priority": "high",
"task_type": "",
"parent_id": 0,
"assigned_to": "",
"due_date": 0,
"completed_at": 0,
"created_at": 1714000000,
"updated_at": 1714000000
}
]
}
]
}