@kitn.ai/chat
Version:
Framework-agnostic, Shadow-DOM web components for building AI chat interfaces — works in React, Vue, Angular, Svelte, or plain HTML. Authored in SolidJS.
17 lines (16 loc) • 553 B
JSON
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://kitn.ai/schemas/card/tasks.result.schema.json",
"title": "TasksCardResult",
"description": "Payload of CardEvent { kind: 'submit' } from a tasks card.",
"type": "object",
"required": ["selected"],
"properties": {
"selected": {
"type": "array",
"description": "Ids of the checked tasks, in the order they appear in `tasks`. Subset of the input task ids.",
"items": { "type": "string", "minLength": 1 },
"uniqueItems": true
}
}
}