document ISchemaAssociation.schema

This commit is contained in:
Martin Aeschlimann
2020-10-01 21:08:26 +02:00
parent f19ccd13c2
commit 1b960248d6

View File

@@ -167,7 +167,12 @@ interface ISchemaAssociation {
* A match succeeds when there is at least one pattern matching and last matching pattern does not start with '!'.
*/
fileMatch: string[];
/*
* The schema for the given URI.
* If no schema is provided, the schema will be fetched with the schema request service (if available).
*/
schema?: JSONSchema;
}
```