Skip to content

Commit a85cbe4

Browse files
simidatho7561
authored andcommitted
Update README.md with valid schema links.
1 parent 0623c09 commit a85cbe4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The following settings are supported:
4949
* `yaml.hoverAnchor`: Enable/disable hover feature for anchors
5050
* `yaml.completion`: Enable/disable autocompletion
5151
* `yaml.schemas`: Helps you associate schemas with files in a glob pattern
52-
* `yaml.schemaStore.enable`: When set to true, the YAML language server will pull in all available schemas from [JSON Schema Store](http://schemastore.org/json/)
52+
* `yaml.schemaStore.enable`: When set to true, the YAML language server will pull in all available schemas from [JSON Schema Store](http://schemastore.org/)
5353
* `yaml.schemaStore.url`: URL of a schema store catalog to use when downloading schemas.
5454
* `yaml.customTags`: Array of custom tags that the parser will validate against. It has two ways to be used. Either an item in the array is a custom tag such as "!Ref" and it will automatically map !Ref to a scalar, or you can specify the type of the object !Ref should be, e.g. "!Ref sequence". The type of object can be either scalar (for strings and booleans), sequence (for arrays), mapping (for objects).
5555
* `yaml.maxItemsComputed`: The maximum number of outline symbols and folding regions computed (limited for performance reasons).
@@ -126,7 +126,7 @@ some_mapping: !Mapping-example
126126
127127
YAML Language support uses [JSON Schemas](https://json-schema.org/) to understand the shape of a YAML file, including its value sets, defaults and descriptions. The schema support is shipped with JSON Schema Draft 7.
128128
129-
We support schemas provided through [JSON Schema Store](http://schemastore.org/json/). However, schemas can also be defined in a workspace.
129+
We support schemas provided through [JSON Schema Store](http://schemastore.org/). However, schemas can also be defined in a workspace.
130130
131131
The association of a YAML file to a schema can be done either in the YAML file itself using a modeline or in the User or Workspace [settings](https://code.visualstudio.com/docs/getstarted/settings) under the property `yaml.schemas`.
132132

@@ -154,7 +154,7 @@ e.g.
154154

155155
```json
156156
yaml.schemas: {
157-
"https://json.schemastore.org/composer": "/*"
157+
"https://getcomposer.org/schema.json": "/*"
158158
}
159159
```
160160

@@ -170,7 +170,7 @@ e.g.
170170

171171
```json
172172
yaml.schemas: {
173-
"https://json.schemastore.org/composer": "/*",
173+
"https://getcomposer.org/schema.json": "/*",
174174
"kubernetes": "/myYamlFile.yaml"
175175
}
176176
```
@@ -210,7 +210,7 @@ e.g.
210210

211211
```json
212212
"yaml.schemas": {
213-
"http://json.schemastore.org/composer": ["/*"],
213+
"https://getcomposer.org/schema.json": ["/*"],
214214
"file:///home/johnd/some-schema.json": ["some.yaml"],
215215
"../relative/path/schema.json": ["/config*.yaml"],
216216
"/Users/johnd/some-schema.json": ["some.yaml"],
@@ -228,7 +228,7 @@ e.g.
228228
e.g.
229229
```json
230230
"yaml.schemas": {
231-
"http://json.schemastore.org/composer": ["/*"],
231+
"https://getcomposer.org/schema.json": ["/*"],
232232
"kubernetes": ["/myYamlFile.yaml"]
233233
}
234234
```

0 commit comments

Comments
 (0)