Voorbeeld van acroniemenformulier
Het voorbeeld van een acroniemenformulier is een invoerformulier voor adaptieve kaarten dat is ontworpen om acroniemen te verzamelen en deze op te slaan in Dataverse. Deze acroniemen kunnen vanaf elke locatie worden opgevraagd vanwege deze doorlopende gegevensverzameling.
Invoer/uitvoer en notities
Naam van dynamisch token | Tekst van tijdelijke aanduiding | Opmerkingen: |
---|---|---|
{acAcronym} | Voer de afkorting voor de acroniem in | Antwoorduitvoer |
{acDefinition} | Voer een definitie van het bovenstaande acroniem in | Antwoorduitvoer |
{
"$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"
}
]
}