{
  "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
  "version": "1.0",
  "type": "AdaptiveCard",
  "body": [
    {
      "type": "Jumbotron",
      "title": "Pizza Editor",
      "subtitle": "A form for editing a Pizza."
    },
    {
      "id": "code",
      "type": "Input.Text",
      "title": "Code"
    },
    {
      "id": "label",
      "type": "Input.Text",
      "title": "Customer-facing label"
    },
    {
      "id": "popularitySeq",
      "type": "Input.Number",
      "title": "Popularity seq"
    },
    {
      "id": "vegetarian",
      "type": "Input.ChoiceSet",
      "title": "Vegetarian",
      "choices": [
        {
          "title": "Yes",
          "value": "YES"
        },
        {
          "title": "No",
          "value": "NO"
        }
      ]
    }
  ],
  "actions": [
    {
      "type": "Action.Cancel",
      "title": "Cancel"
    },
    {
      "type": "Action.Submit",
      "title": "Submit"
    }
  ],
  "templateMeta": {
    "name": "pizza-editing-form",
    "title": "Pizza Editor",
    "category": "pizza"
  },
  "meta": {
    "generatedWith": "scaffold",
    "generatedOn": "now",
    "data": {
      "modelName": "pizza"
    }
  }
}
