Share via


Beispiel eines Formulars für Akronyme

Das Beispiel Formular für Akronyme ist ein Eingabeformular für adaptive Karten, das für die Erfassung von Akronymen und die Speicherung in Dataverse konzipiert ist. Diese Akronyme können aufgrund der laufenden Datenerfassung überall abgefragt werden.

Protokollmodul für Akronyme.

Eingaben/Ausgaben und Hinweise

Name des dynamischen Tokens Platzhaltertext Hinweise:
{acAcronym} Geben Sie die Abkürzung für das Akronym ein Antwort-ausgabe
{acDefinition} Geben Sie eine Definition des obigen Akronyms ein Antwort-ausgabe
{
    "$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"
        }
    ]
}