|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "intents": [
- {
- "intent": "RequestIntent",
- "slots": [
- {
- "name": "Role",
- "type": "ROLE_TYPES"
- }
- ]
- },
- {
- "intent": "RequestTwoIntent",
- "slots": [
- {
- "name": "RoleOne",
- "type": "ROLE_TYPES"
- },
- {
- "name": "RoleTwo",
- "type": "ROLE_TYPES"
- }
- ]
- },
- {
- "intent": "RequestThreeIntent",
- "slots": [
- {
- "name": "RoleOne",
- "type": "ROLE_TYPES"
- },
- {
- "name": "RoleTwo",
- "type": "ROLE_TYPES"
- },
- {
- "name": "RoleThree",
- "type": "ROLE_TYPES"
- }
- ]
- },
- {
- "intent": "AnyRequest"
- },
- {
- "intent": "AMAZON.HelpIntent"
- },
- {
- "intent": "Stop"
- }
- ]
- }
|