Skip to content

Commit 6fb032a

Browse files
authored
feat(schema): allow structured descriptions for exts, insts, profiles (#712)
1 parent cf88b2b commit 6fb032a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

schemas/ext_schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"required": ["description", "schema"],
3838
"properties": {
3939
"description": {
40-
"type": "string",
40+
"$ref": "schema_defs.json#/$defs/spec_text",
4141
"description": "Parameter description, including list of valid values"
4242
},
4343
"also_defined_in": {
@@ -97,7 +97,7 @@
9797
"pattern": ".*[^.!,]$"
9898
},
9999
"description": {
100-
"type": "string",
100+
"$ref": "schema_defs.json#/$defs/spec_text",
101101
"description": "Full documentation of the extension"
102102
},
103103
"rvi_jira_issue": {

schemas/inst_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
"pattern": ".*[^.!,]$"
185185
},
186186
"description": {
187-
"type": "string",
187+
"$ref": "schema_defs.json#/$defs/spec_text",
188188
"description": "Detailed description of the instruction"
189189
},
190190
"definedBy": {

schemas/profile_class_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"description": "Asciidoc text containing the introduction prose for the class"
3131
},
3232
"description": {
33-
"type": "string",
33+
"$ref": "schema_defs.json#/$defs/spec_text",
3434
"description": "Asciidoc text containing longer description prose for the class"
3535
},
3636
"naming_scheme": {

0 commit comments

Comments
 (0)