From cd745058e8b63df1a21b6ba38e49cfdd5dc1d3f6 Mon Sep 17 00:00:00 2001 From: "Paul Campbell (CMD)" Date: Fri, 24 May 2019 10:32:27 -0700 Subject: [PATCH] [Schema] Add fontType to TextBlock Spec #1078 --- schemas/adaptive-card.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/schemas/adaptive-card.json b/schemas/adaptive-card.json index 39c05e3b2d..bbc440df4e 100644 --- a/schemas/adaptive-card.json +++ b/schemas/adaptive-card.json @@ -1000,6 +1000,14 @@ "title" ] }, + "FontType": { + "type": "string", + "description": "Type of font to use for rendering", + "enum": [ + "default", + "monospace" + ] + }, "TextBlock": { "additionalProperties": true, "type": "object", @@ -1023,6 +1031,9 @@ "attention" ] }, + "fontType": { + "$ref": "#/definitions/FontType" + }, "horizontalAlignment": { "$ref": "#/definitions/HorizontalAlignment" },