Skip to content

Commit b1ed71b

Browse files
committed
refactor: Add comment containing link to AdaptiveCards issue
1 parent d52ca96 commit b1ed71b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/tools/run_manifest_validation/runValidation.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ async function createUI5ManifestValidateFunction(ui5Schema: object) {
3737
// Special handling for Adaptive Card schema to fix unsupported "id" property
3838
// According to the JSON Schema spec Draft 06 (used by Adaptive Card schema),
3939
// "$id" should be used instead of "id"
40+
// See https://github.com/microsoft/AdaptiveCards/issues/9274
4041
if (uri.includes("adaptive-card.json") && typeof schema.id === "string") {
4142
schema.$id = schema.id;
4243
delete schema.id;

0 commit comments

Comments
 (0)