Skip to content

Instantly share code, notes, and snippets.

@savelee
Created March 2, 2020 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save savelee/9ef13f33f8eb7b2d2ff41ef363a4f4be to your computer and use it in GitHub Desktop.
Save savelee/9ef13f33f8eb7b2d2ff41ef363a4f4be to your computer and use it in GitHub Desktop.
Dialogflow Sanity
export default {
name: 'simpleresponse',
title: 'Simple Response',
type: 'document',
fields: [
{
name: 'title',
title: 'Title',
type: 'string'
},
{
name: 'id',
title: 'Intent Name (as written in Dialogflow)',
type: 'string'
},
{
name: 'paramSystem',
title: 'System name',
type: 'string'
},
{
name: 'paramUserAction',
title: 'User Action',
type: 'string'
},
{
name: 'responseEn',
title: 'English Chatbot response',
type: 'text'
},
{
name: 'responseFr',
title: 'French Chatbot response',
type: 'text'
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment