# Action.Save
Cardscript
Allows to save a form to continue later.
# Example
{
"type": "AdaptiveCard",
"body": [],
"actions": [
{
"type": "Action.Save",
"title": "Action.Save"
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0"
}
# Required properties
# type
Must be "Action.Save"
.
- Type:
string
# Optional properties
# title
Label for button or link that represents this action.
- Type:
string
# iconUrl
Optional icon to be shown on the action in conjunction with the title.
- Type:
string
- Format:
uri
(opens new window)
# JSON Schema
{
"type": "Action.Save",
"additionalProperties": true,
"description": "Allows to save a form to continue later.",
"properties": {
"type": {
"type": "string",
"description": "Must be `\"Action.Save\"`."
},
"title": {
"type": "string",
"description": "Label for button or link that represents this action."
},
"iconUrl": {
"type": "string",
"format": "uri",
"description": "Optional icon to be shown on the action in conjunction with the title",
"version": "1.1"
}
},
"required": [
"type"
],
"typeSafe": "action-save",
"example": "FIXME!",
"propertySummary": [
{
"name": "type",
"type": "string",
"required": "Required",
"text": "Must be `\"Action.Save\"`."
},
{
"name": "title",
"type": "string",
"required": "Optional",
"text": "Label for button or link that represents this action."
},
{
"name": "iconUrl",
"type": "string",
"required": "Optional",
"text": "Optional icon to be shown on the action in conjunction with the title"
}
]
}