To use features like headless mode and delegate, you need to understand both
user and skill messages. Everything that's received or sent from the Oracle
Chat Server is represented as a message, one that's sent from the user to
the skill, or from the skill to the user.
These are the base types used in all messages sent from the
user to the skill and vice versa. They are the building blocks
of all messages.
This action is used to submit an input form to the skill when it satisfies the
client side validation. It adds the following properties to the Action properties:
Name
Description
Type
Required?
type
The action type
"submitForm"
Yes
postback
The postback payload, which might include an action
proeprty to trigger navigation. The value of this property should be
set in the formSubmissionPayload.
The action that should be performed when the user
clicks the action button.
Action
Yes
Editable Field 🔗
Represents an editable field. All editable fields inherit the generic field properties and have the following additional properties:
Name
Description
Type
Required?
id
The field ID
string
Yes
placeholder
A description of the input that's expected from the
user. This text displays when the user has not yet made a selection
or entered a value.
string
No
required
Whether this input is required to submit the
form
boolean
No
clientErrorMessage
The field-level error message that's displayed below
the field when a client-side validation error occurs. If not
provided, the SDK defaults to
editFieldErrorMessage.
string
No
serverErrorMessage
The field level error message that's displayed below
the field when a server-side validation error occurs. This error
message must be included in the payload sent by the skill.
string
No
autoSubmit
When set to true, the form is partially submitted when the user has entered a value
for the field.
No
Single-Select 🔗
The single-select field inherits all of the Editable Field properties and has the following additional properties:
Name
Description
Type
Required?
displayType
The field type
"singleSelect"
Yes
defaultValue
The default selection
Primitive data types (string, number, boolean,
etc.)
This represents the form submission message that's sent after the user has submitted
a form by a SubmitFormAction. It has the following properties:
Name
Description
Type
Required?
type
The message type.
"formSubmission"
Yes
submittedFields
Key-value pairs of the submitted field values. The
key is the name (ID) of the field.
JSONObject
Yes
postback
The postback payload, which might include an action
property to trigger navigation. The value of this property should be
taken from the SubmitFormAction.
JSONObject
No
partialSubmitField
The ID of the field that triggers a partial form
submission. Fields with the autoSubmit property set to
true can trigger a partial form
submission.
Represents a message that returns the results of a query in table form The message
consists of an array of headings and an array of rows. The rows themselves contain a
fields array that represents individual cells.
Note
This message type is used for SQL
dialogs.
Name
Description
Type
Required?
type
The message type
"table"
Yes
headings
An array of table headings
Array<Heading>
Yes
rows
An array of table rows. Each row contains a
fields array that represents the table cells.
Array<Row>
Yes
paginationInfo
The paging information for the results in the
table
Represents a message that returns the results of a query in a form that's read only.
The message consists of an array of form results. Each form result contains a
fields array with key-value pairs that represent a field.
Note
This message type is used for SQL
dialogs.
Name
Description
Type
Required?
type
The message type
"form"
Yes
forms
An array of form results. Each result contains a
fields array that represents the form
fields.
Array<Row>
Yes
formColumns
The number of columns in which the fields of the
form should be grouped.
1, 2
Yes
paginationInfo
The paging information for the results in the
form
The channel-specific extension properties associated
with the message
JSONbject
No
{
"type":"form",
"headerText":"A-Team",
"forms":[
{
"fields":[
{
"displayType":"text",
"label":"First Name",
"alignment":"left",
"value":"Aaron"
},
{
"displayType":"text",
"label":"Last Name",
"alignment":"left",
"value":"Adams"
},
{
"displayType":"text",
"label":"Title",
"alignment":"left",
"value":"Demo Builder"
},
{
"displayType":"text",
"label":"Phone",
"alignment":"left",
"value":"1234567890"
},
{
"linkLabel":"Open Link",
"displayType":"link",
"label":"Contact",
"alignment":"left",
"value":"https://www.example.com/in/aaron-adams-4862752"
},
{
"displayType":"text",
"label":"Bio",
"alignment":"left"
}
]
},
{
"fields":[
{
"displayType":"text",
"label":"First Name",
"alignment":"left",
"value":"Bob"
},
{
"displayType":"text",
"label":"Last Name",
"alignment":"left",
"value":"Brown"
},
{
"displayType":"text",
"label":"Title",
"alignment":"left",
"value":"Multi-lingual Expert"
},
{
"displayType":"text",
"label":"Phone",
"alignment":"left",
"value":"1234567890"
},
{
"linkLabel":"Open Link",
"displayType":"link",
"label":"Contact",
"alignment":"left",
"value":"https://www.example.com/in/Bobbrown"
},
{
"displayType":"text",
"label":"Bio",
"alignment":"left",
"value":"Bob is a member of the cloud architects team which is specialized in enterprise mobility and cloud development. Bob has been directly involved with Oracle middleware since 2005 during which he held different roles in managing highly specialized teams."
}
]
},
{
"fields":[
{
"displayType":"text",
"label":"First Name",
"alignment":"left",
"value":"Charlie"
},
{
"displayType":"text",
"label":"Last Name",
"alignment":"left",
"value":"Chase"
},
{
"displayType":"text",
"label":"Title",
"alignment":"left",
"value":"Flow Builder"
},
{
"displayType":"text",
"label":"Phone",
"alignment":"left",
"value":"1234567890"
},
{
"linkLabel":"Open Link",
"displayType":"link",
"label":"Contact",
"alignment":"left",
"value":"https://www.example.com/in/Charlie-chase-97a418"
},
{
"displayType":"text",
"label":"Bio",
"alignment":"left",
"value":"Charlie is a member of the enterprise mobility team. Charlie has 20+ years experience with custom development. Charlie is an expert on mobile cloud services and development tools. He is the creator of productivity tools. His latest passion is building chatbots with a minimum amount of custom code."
}
]
}
],
"formColumns":2,
"paginationInfo":{
"currentRangeSize":3,
"rangeStart":0,
"nextRangeSize":2,
"hasPrevious":false,
"hasNext":true,
"totalCount":5,
"rangeSize":3,
"status":"Showing 1-3 of 5 items"
},
"globalActions":[
{
"postback":{
"variables":{},
"action":"system.showMore"
},
"label":"Show More",
"type":"postback"
}
]
}
Skill Table-Form Message 🔗
This message combines the Table and Form message
types. It represents a message that returns the results of a query in the form of a
table. Each each row of the table has a read-only form in addition to the row
information.
Note
This message type
is used for SQL dialogs.
Name
Description
Type
Required?
type
The message type
"tableForm"
Yes
headings
An array of table headings
Array<Heading>
Yes
rows
An array of table rows. Each row contains an array of
fields that represent the table cells.
Array<Row>
Yes
forms
An array of form results that correspond to each
table row. Each form contains a fields array that
represents the form fields.
Array<Form>
Yes
formColumns
The number of columns in which the fields of the form
should be grouped.
1, 2
Yes
paginationInfo
An array of global actions related to the
text
Array<Action>
No
actions
An array of actions related to the table form
Array<Action>
No
globalActions
An array of global actions
Array<Action>
No
channelExtensions
The channel-specific extension properties associated
with the message
JSONObject
No
{
"type":"tableForm",
"headerText":"A-Team",
"headings":[
{
"width":47,
"label":"First Name",
"alignment":"left"
},
{
"width":47,
"label":"Last Name",
"alignment":"left"
}
],
"rows":[
{
"fields":[
{
"displayType":"text",
"label":"First Name",
"alignment":"left",
"value":"Aaron"
},
{
"displayType":"text",
"label":"Last Name",
"alignment":"left",
"value":"Adams"
}
]
},
{
"fields":[
{
"displayType":"text",
"label":"First Name",
"alignment":"left",
"value":"Bob"
},
{
"displayType":"text",
"label":"Last Name",
"alignment":"left",
"value":"Brown"
}
]
},
{
"fields":[
{
"displayType":"text",
"label":"First Name",
"alignment":"left",
"value":"Charlie"
},
{
"displayType":"text",
"label":"Last Name",
"alignment":"left",
"value":"Chase"
}
]
}
],
"forms":[
{
"title":"View details Aaron Adams",
"fields":[
{
"displayType":"text",
"label":"Title",
"alignment":"left",
"value":"Demo Builder"
},
{
"displayType":"text",
"label":"Phone",
"alignment":"left",
"value":"1234567890"
},
{
"linkLabel":"Open Link",
"displayType":"link",
"label":"Contact",
"alignment":"left",
"value":"https://www.example.com/in/Aaron-adams-4862572"
},
{
"displayType":"text",
"label":"Bio",
"alignment":"left"
}
]
},
{
"title":"View details Bob Brown",
"fields":[
{
"displayType":"text",
"label":"Title",
"alignment":"left",
"value":"Multi-lingual Expert"
},
{
"displayType":"text",
"label":"Phone",
"alignment":"left",
"value":"1234567890"
},
{
"linkLabel":"Open Link",
"displayType":"link",
"label":"Contact",
"alignment":"left",
"value":"https://www.example.com/in/Bobbrown"
},
{
"displayType":"text",
"label":"Bio",
"alignment":"left",
"value":"Bob is a member of the cloud architects team which is specialized in enterprise mobility and cloud development. Bob has been directly involved with Oracle middleware since 2005 during which he held different roles in managing highly specialized teams."
}
]
},
{
"title":"View details Charlie Chase",
"fields":[
{
"displayType":"text",
"label":"Title",
"alignment":"left",
"value":"Flow Builder Fanatic"
},
{
"displayType":"text",
"label":"Phone",
"alignment":"left",
"value":"1234567890"
},
{
"linkLabel":"Open Link",
"displayType":"link",
"label":"Contact",
"alignment":"left",
"value":"https://www.example.com/in/Charlie-chase-97a418"
},
{
"displayType":"text",
"label":"Bio",
"alignment":"left",
"value":"Charlie is a member of the enterprise mobility team. Charlie has 20+ years experience with custom development. Charlie is an expert on mobile cloud services and development tools. He is the creator of productivity tools. His latest passion is building chatbots with a minimum amount of custom code."
}
]
}
],
"formColumns":2,
"paginationInfo":{
"currentRangeSize":3,
"rangeStart":0,
"nextRangeSize":2,
"hasPrevious":false,
"hasNext":true,
"totalCount":5,
"rangeSize":3,
"status":"Showing 1-3 of 5 items"
},
"actions":[
{
"postback":{
"variables":{
},
"action":"system.showMore"
},
"label":"Show More",
"type":"postback"
}
],
"footerText":"Tap on a row to see personal details"
}
Skill Edit Form Message 🔗
Represents an editable form message (input form). The message consists of a Field array. It has the following properties
Name
Description
Type
Required?
type
The message type. In this case, it's
"editForm".
"editForm"
Yes
fields
A list of fields which can include both editable and
read only fields.
Array<Field>
Yes
title
A representative title for the edit form
String
No
formColumns
The number of columns in which the form fields should
be grouped.
Integer (1)
The SDK supports only one
column for Release 23.06.
No
errorMessage
A form-level error message that displays when the user
has submitted invalid data but the error cannot be linked to an
individual field.
String
No
actions
An array of actions related to the edit form. This
array should include a SubmitFormAction. An error
displays in the browser console when the
SubmitFormAction is not included in the
actions array.