{
  "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
  "version": "1.0",
  "type": "AdaptiveCard",
  "body": [
    {
      "type": "Jumbotron",
      "title": "Pizza Viewer",
      "subtitle": "A form for viewing a Pizza."
    },
    {
      "type": "FactSet",
      "facts": [
        {
          "title": "Code",
          "value": "{{data.code}}"
        }
      ]
    },
    {
      "type": "FactSet",
      "facts": [
        {
          "title": "Customer-facing label",
          "value": "{{data.label}}"
        }
      ]
    },
    {
      "type": "FactSet",
      "facts": [
        {
          "title": "Is it vegetarian?",
          "value": "{{data.vegetarian}}"
        }
      ]
    }
  ],
  "actions": [
    {
      "type": "Action.Cancel",
      "title": "Close"
    }
  ],
  "templateMeta": {
    "name": "pizza-view-form",
    "title": "Pizza Viewer",
    "category": "pizza"
  },
  "meta": {
    "generatedWith": "scaffold",
    "generatedOn": "now",
    "data": {
      "modelName": "pizza"
    }
  }
}
