Sampel borang akronim
Sampel borang akronim ialah borang input Kad Adaptif yang direka untuk mengumpul akronim dan menyimpannya Dataverse. Akronim ini boleh disoal dari mana-mana sahaja kerana pengumpulan data yang berterusan ini.
Input/Output dan nota
Nama Token Dinamik | Teks Ruang Letak | Nota: |
---|---|---|
{acAcronym} | Masukkan singkatan untuk akronim | Output respons |
{acDefinition} | Masukkan takrif akronim di atas | Output respons |
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "Acronym Logger",
"id": "Title",
"spacing": "Medium",
"horizontalAlignment": "Center",
"size": "ExtraLarge",
"weight": "Bolder",
"color": "Accent"
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Acronym",
"wrap": true,
"spacing": "Medium"
},
{
"type": "Input.Text",
"id": "acAcronym",
"placeholder": "Enter the abbreviation for the acronym"
},
{
"type": "TextBlock",
"text": "Definition",
"wrap": true
},
{
"type": "Input.Text",
"placeholder": "Enter a definition of the acronym above",
"id": "acDefinition",
"isMultiline": true
}
]
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit", "id": "btnSubmit"
}
]
}