Created
September 30, 2021 06:29
-
-
Save jondjones/e45d33cd28dff1454205a19d36f7c65c to your computer and use it in GitHub Desktop.
Tips for working with JSON in Visual Studio Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "json.schemas": [ | |
| { | |
| "fileMatch": [ | |
| "/.myjsonfile" | |
| ], | |
| "schema": { | |
| "type": "object", | |
| "properties": { | |
| "properyExample" : { | |
| "type": "string", | |
| "description": "A description" | |
| } | |
| } | |
| } | |
| }, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment