-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfhir-examples.code-workspace
62 lines (61 loc) · 1.41 KB
/
fhir-examples.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"folders": [
{
"path": "."
}
],
"settings": {
"json.schemas": [
{
"fileMatch": [
"/examples/**/*_resource_R4.0.1*.json",
"/examples/**/*_resource_R4*.json"
],
"url": "./schemas/4.0.1/resource.json"
},
{
"fileMatch": [
"/examples/**/*_example_R4.0.1*.json",
"/examples/**/*_example_R4*.json"
],
"url": "./schemas/4.0.1/example.json"
},
{
"fileMatch": [
"/examples/**/*_resource_R5.2022.02.22*.json",
"/examples/**/*_resource_R5*.json"
],
"url": "./schemas/5.2022.02.22/resource.json"
},
{
"fileMatch": [
"/examples/**/*_example_R5.2022.02.22*.json",
"/examples/**/*_example_R5*.json"
],
"url": "./schemas/5.2022.02.22/example.json"
}
],
"yaml.customTags": [],
"yaml.schemas": {
"./schemas/4.0.1/resource.json": [
"/examples/**/*_resource_R4.0.1*.yaml",
"/examples/**/*_resource_R4*.yaml"
],
"./schemas/4.0.1/example.json": [
"/examples/**/*_example_R4.0.1*.yaml",
"/examples/**/*_example_R4*.yaml"
],
"./schemas/5.2022.02.22/resource.json": [
"/examples/**/*_resource_R5.2022.02.22*.yaml",
"/examples/**/*_resource_R5*.yaml"
],
"./schemas/5.2022.02.22/example.json": [
"/examples/**/*_example_R5.2022.02.22*.yaml",
"/examples/**/*_example_R5*.yaml"
]
},
"json.maxItemsComputed": 50000,
"editor.tabSize": 2,
"editor.detectIndentation": false
}
}