This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.json
103 lines (103 loc) · 3.66 KB
/
config.json
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"script": "scripts/ant.xml",
"targets": {
"onLoad": "onLoad",
"onGenerate": "onGenerate"
},
"_extraTemplates-documentation": "This array of objects identifies additional templates available for generation for different resource types",
"extraTemplates": [
{
"name": "mappings",
"description": "Mappings"
},
{
"name": "examples",
"description": "Examples"
},
{
"name": "profile-xml",
"description": "Profile XML"
},
{
"name": "profile-json",
"description": "Profile JSON"
},
{
"name": "profile-ttl",
"description": "Profile Turtle"
}
],
"_pre-process-documentation": "This array of objects indicates data being converted from existing files using scripts to support dependency checking when performing continuous builds",
"pre-process": [
{
"folder": "input/includes",
"relativePath": "_includes"
}, {
"folder": "input/data",
"relativePath": "_data"
}, {
"folder": "input/pagecontent",
"relativePath": "_includes"
}
],
"defaults": {
"_documentation": "this object contains the default publishing policy for different types. Anything not mentioned defaults to true",
"Any": {
"java": false,
"template-base": "template/layouts/layout-instance-base.html",
"template-format": "template/layouts/layout-instance-format.html",
"base": "{{[id]}}.html",
"format": "{{[id]}}.{{[fmt]}}.html"
},
"example": {
"java": false,
"template-base": "template/layouts/layout-instance-base.html",
"template-format": "template/layouts/layout-instance-format.html",
"base": "{{[id]}}.html",
"format": "{{[id]}}.{{[fmt]}}.html"
},
"ImplementationGuide": {
"template-base": "",
"template-format": ""
},
"StructureDefinition:extension": {
"template-base": "template/layouts/layout-ext.html",
"template-defns": "template/layouts/layout-ext-definitions.html",
"template-mappings": "template/layouts/layout-ext-mappings.html",
"template-examples": "",
"template-profile-xml": "template/layouts/layout-ext-xml.html",
"template-profile-json": "template/layouts/layout-ext-json.html",
"template-profile-ttl": "template/layouts/layout-ext-ttl.html",
"template-format": "",
"base": "extension-{{[id]}}.html",
"defns": "extension-{{[id]}}-definitions.html",
"mappings": "extension-{{[id]}}-mappings.html",
"examples": "extension-{{[id]}}-examples.html",
"profile-xml": "extension-{{[id]}}.profile.xml.html",
"profile-json": "extension-{{[id]}}.profile.json.html",
"profile-ttl": "extension-{{[id]}}.profile.ttl.html"
},
"StructureDefinition": {
"template-base": "template/layouts/layout-profile.html",
"template-defns": "template/layouts/layout-profile-definitions.html",
"template-mappings": "template/layouts/layout-profile-mappings.html",
"template-examples": "template/layouts/layout-profile-examples.html",
"template-profile-xml": "template/layouts/layout-profile-xml.html",
"template-profile-json": "template/layouts/layout-profile-json.html",
"template-profile-ttl": "template/layouts/layout-profile-ttl.html",
"base": "{{[id]}}.html",
"defns": "{{[id]}}-definitions.html",
"mappings": "{{[id]}}-mappings.html",
"examples": "{{[id]}}-examples.html",
"profile-xml": "{{[id]}}.profile.xml.html",
"profile-json": "{{[id]}}.profile.json.html",
"profile-ttl": "{{[id]}}.profile.ttl.html"
},
"ValueSet": {
"template-base": "template/layouts/layout-valueset.html",
"template-format": "template/layouts/layout-valueset-format.html",
"base": "valueset-{{[id]}}.html",
"format": "valueset-{{[id]}}.{{[fmt]}}.html"
}
}
}