Exemplo de acrónimos

O formulario de acrónimos mostra é un formulario de entrada de tarxeta adaptativa que está deseñado para recoller acrónimos e almacenalos Dataverse. Estes acrónimos poderían consultarse desde calquera lugar debido a esta recollida de datos en curso.

Registrador de acrónimos.

Entradas/Saídas e notas

Nome do token dinámico Texto do marcador de posición Notas:
{acAcronym} Introduza a abreviatura do acrónimo Resposta saída
{acDefinition} Introduce unha definición do acrónimo anterior Resposta saída
{
    "$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"
        }
    ]
}