diff --git a/schemas/1.2.0/adaptive-card.json b/schemas/1.2.0/adaptive-card.json index 3ba0f5bff3..052dca2c48 100644 --- a/schemas/1.2.0/adaptive-card.json +++ b/schemas/1.2.0/adaptive-card.json @@ -351,7 +351,7 @@ }, "minHeight": { "type": "string", - "description": "Specifies the minimum height of the column.", + "description": "Specifies the minimum height of the column in pixels, like `\"80px\"`.", "examples": [ "50px" ], @@ -399,7 +399,7 @@ "type": "number" } ], - "description": "`\"auto\"`, `\"stretch\"`, or a number representing relative width of the column in the column group." + "description": "`\"auto\"`, `\"stretch\"`, a number representing relative width of the column in the column group, or in version 1.1 and higher, a specific pixel width, like `\"50px\"`." }, "id": {}, "isVisible": {}, @@ -470,7 +470,7 @@ }, "minHeight": { "type": "string", - "description": "Specifies the minimum height of the column set.", + "description": "Specifies the minimum height of the column set in pixels, like `\"80px\"`.", "examples": [ "50px" ], @@ -557,7 +557,7 @@ }, "minHeight": { "type": "string", - "description": "Specifies the minimum height of the container.", + "description": "Specifies the minimum height of the container in pixels, like `\"80px\"`.", "examples": [ "50px" ], diff --git a/schemas/src/elements/Column.json b/schemas/src/elements/Column.json index e88799f53d..020d245a9d 100644 --- a/schemas/src/elements/Column.json +++ b/schemas/src/elements/Column.json @@ -33,7 +33,7 @@ }, "minHeight": { "type": "string", - "description": "Specifies the minimum height of the column.", + "description": "Specifies the minimum height of the column in pixels, like `\"80px\"`.", "examples": [ "50px" ], @@ -67,7 +67,7 @@ }, "width": { "type": "string|number", - "description": "`\"auto\"`, `\"stretch\"`, or a number representing relative width of the column in the column group." + "description": "`\"auto\"`, `\"stretch\"`, a number representing relative width of the column in the column group, or in version 1.1 and higher, a specific pixel width, like `\"50px\"`." } } } \ No newline at end of file diff --git a/schemas/src/elements/ColumnSet.json b/schemas/src/elements/ColumnSet.json index 039e74d990..a2b45991d9 100644 --- a/schemas/src/elements/ColumnSet.json +++ b/schemas/src/elements/ColumnSet.json @@ -38,7 +38,7 @@ }, "minHeight": { "type": "string", - "description": "Specifies the minimum height of the column set.", + "description": "Specifies the minimum height of the column set in pixels, like `\"80px\"`.", "examples": [ "50px" ], diff --git a/schemas/src/elements/Container.json b/schemas/src/elements/Container.json index 05f51bb151..12572671ed 100644 --- a/schemas/src/elements/Container.json +++ b/schemas/src/elements/Container.json @@ -44,7 +44,7 @@ }, "minHeight": { "type": "string", - "description": "Specifies the minimum height of the container.", + "description": "Specifies the minimum height of the container in pixels, like `\"80px\"`.", "examples": [ "50px" ],