File size: 979 Bytes
e1971fa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "$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" }
  }
}