Schema Explorer

Choose element:

Important note about accessibility: In version 1.3 of the schema we introduced a label property on Inputs to improve accessibility. If the Host app you are targeting supports v1.3 you should use label instead of a TextBlock as seen in some samples below. Once most Host apps have updated to the latest version we will update the samples accordingly.

Fact

Describes a Fact in a FactSet as a key/value pair.

Property Type Required Description Version
title string Yes The title of the fact. 1.0
value string Yes The value of the fact. 1.0

Example

JSON
{
	"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
	"type": "AdaptiveCard",
	"version": "1.0",
	"body": [
		{
			"type": "FactSet",
			"facts": [
				{
					"title": "Fact 1",
					"value": "Value 1"
				},
				{
					"title": "Fact 2",
					"value": "Value 2"
				},
				{
					"title": "Fact 3",
					"value": "Value 3"
				},
				{
					"title": "Fact 4",
					"value": "Value 5"
				}
			]
		}
	]
}
Adaptive Card

Properties

title

The title of the fact.

  • Type: string
  • Required: Yes

value

The value of the fact.

  • Type: string
  • Required: Yes