Sampel bentuk akronim
Sampel formulir akronim adalah formulir input Kartu Adaptif yang dirancang untuk mengumpulkan akronim dan menyimpannya Dataverse. Akronim ini dapat ditanyakan dari mana saja karena pengumpulan data yang sedang berlangsung ini.
Input/Output dan catatan
Nama Token Dinamis | Teks Tempat Penampung | Catatan: |
---|---|---|
{acAcronym} | Masukkan singkatan untuk akronim | Output respons |
{acDefinition} | Masukkan definisi 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"
}
]
}