{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "faq-snippets-dataset train split", "type": "object", "required": [ "snippet_id", "question", "answer", "intent", "negative_clarification", "topic_tags", "locale", "license", "created_at", "updated_at" ], "properties": { "snippet_id": { "type": "string" }, "question": { "type": "string" }, "answer": { "type": "string" }, "intent": { "type": "string", "enum": ["definitional", "comparative", "negative_clarification", "procurement", "educational"] }, "negative_clarification": { "type": "boolean", "description": "True when the answer mainly clarifies limits or misconceptions" }, "topic_tags": { "type": "array", "items": { "type": "string" } }, "locale": { "type": "string" }, "license": { "type": "string" }, "created_at": { "type": "string" }, "updated_at": { "type": "string" } } }