We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d52ca96 commit b1ed71bCopy full SHA for b1ed71b
src/tools/run_manifest_validation/runValidation.ts
@@ -37,6 +37,7 @@ async function createUI5ManifestValidateFunction(ui5Schema: object) {
37
// Special handling for Adaptive Card schema to fix unsupported "id" property
38
// According to the JSON Schema spec Draft 06 (used by Adaptive Card schema),
39
// "$id" should be used instead of "id"
40
+ // See https://github.com/microsoft/AdaptiveCards/issues/9274
41
if (uri.includes("adaptive-card.json") && typeof schema.id === "string") {
42
schema.$id = schema.id;
43
delete schema.id;
0 commit comments