Advertisement
Guest User

LUIS-Ticket-Sample

a guest
Nov 10th, 2016
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.81 KB | None | 0 0
  1. {
  2.   "luis_schema_version": "1.3.0",
  3.   "name": "testticket",
  4.   "desc": "",
  5.   "culture": "en-us",
  6.   "intents": [
  7.     {
  8.       "name": "None"
  9.     },
  10.     {
  11.       "name": "StatusUpdate"
  12.     }
  13.   ],
  14.   "entities": [
  15.     {
  16.       "name": "Ticket"
  17.     }
  18.   ],
  19.   "composites": [],
  20.   "bing_entities": [],
  21.   "actions": [],
  22.   "model_features": [],
  23.   "regex_features": [],
  24.   "utterances": [
  25.     {
  26.       "text": "what is that status on s344?",
  27.       "intent": "StatusUpdate",
  28.       "entities": [
  29.         {
  30.           "entity": "Ticket",
  31.           "startPos": 5,
  32.           "endPos": 5
  33.         }
  34.       ]
  35.     },
  36.     {
  37.       "text": "status of s124",
  38.       "intent": "StatusUpdate",
  39.       "entities": [
  40.         {
  41.           "entity": "Ticket",
  42.           "startPos": 2,
  43.           "endPos": 2
  44.         }
  45.       ]
  46.     },
  47.     {
  48.       "text": "what's the status of s4",
  49.       "intent": "StatusUpdate",
  50.       "entities": []
  51.     },
  52.     {
  53.       "text": "please tell me the status of s4",
  54.       "intent": "StatusUpdate",
  55.       "entities": [
  56.         {
  57.           "entity": "Ticket",
  58.           "startPos": 6,
  59.           "endPos": 6
  60.         }
  61.       ]
  62.     },
  63.     {
  64.       "text": "whats the status of s5",
  65.       "intent": "StatusUpdate",
  66.       "entities": [
  67.         {
  68.           "entity": "Ticket",
  69.           "startPos": 4,
  70.           "endPos": 4
  71.         }
  72.       ]
  73.     },
  74.     {
  75.       "text": "whats the status of s9",
  76.       "intent": "StatusUpdate",
  77.       "entities": [
  78.         {
  79.           "entity": "Ticket",
  80.           "startPos": 4,
  81.           "endPos": 4
  82.         }
  83.       ]
  84.     },
  85.     {
  86.       "text": "please tell me the status of s24",
  87.       "intent": "StatusUpdate",
  88.       "entities": [
  89.         {
  90.           "entity": "Ticket",
  91.           "startPos": 6,
  92.           "endPos": 6
  93.         }
  94.       ]
  95.     }
  96.   ]
  97. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement