Skip to content
This repository was archived by the owner on Jun 20, 2024. It is now read-only.

Commit 956cc32

Browse files
PrawnPrawn
authored andcommitted
Updating sample JSONSchemas
1 parent 997d0a0 commit 956cc32

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

jsonschemas/EnumOptions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
"enums_trim_prefix": {
1616
"type": "boolean",
1717
"description": "Enums tagged with this will have enum name prefix removed from values:"
18+
},
19+
"ignore": {
20+
"type": "boolean",
21+
"description": "Enums tagged with this will not be processed"
1822
}
1923
},
2024
"additionalProperties": true,

jsonschemas/GoogleValue.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@
2424
],
2525
"title": "Value",
2626
"description": "`Value` represents a dynamically typed value which can be either null, a number, a string, a boolean, a recursive struct value, or a list of values. A producer of value is expected to set one of these variants. Absence of any variant indicates an error. The JSON representation for `Value` is JSON value."
27+
},
28+
"some_list": {
29+
"additionalProperties": true,
30+
"type": "array"
2731
}
2832
},
2933
"additionalProperties": true,

jsonschemas/MessageWithComments.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"name1": {
88
"type": "string",
99
"description": "This field is supposed to represent blahblahblah"
10+
},
11+
"excludedComment": {
12+
"type": "string"
1013
}
1114
},
1215
"additionalProperties": true,

0 commit comments

Comments
 (0)