diff --git a/src/services/jsonSchemaService.ts b/src/services/jsonSchemaService.ts index 3637694..ae89e90 100644 --- a/src/services/jsonSchemaService.ts +++ b/src/services/jsonSchemaService.ts @@ -400,7 +400,7 @@ export class JSONSchemaService implements IJSONSchemaService { if (id === 'http://json-schema.org/draft-03/schema') { return this.promise.resolve(new ResolvedSchema({}, [ localize('json.schema.draft03.notsupported', "Draft-03 schemas are not supported.") ])); } else if (id === 'https://json-schema.org/draft/2019-09/schema') { - schemaToResolve.errors.push(localize('json.schema.draft08.notsupported', "Draft-08 schemas are not yet fully supported.")); + schemaToResolve.errors.push(localize('json.schema.draft201909.notsupported', "Draft 2019-09 schemas are not yet fully supported.")); } }