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

Commit

Permalink
Regenerating sample schemas with new features
Browse files Browse the repository at this point in the history
  • Loading branch information
Chrusty committed Feb 1, 2022
1 parent e93e7a3 commit d61f023
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jsonschemas/GoogleValue.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}
],
"title": "Value",
"description": "`Value` represents a dynamically typed value which can be either\n null, a number, a string, a boolean, a recursive struct value, or a\n list of values. A producer of value is expected to set one of these\n variants. Absence of any variant indicates an error.\n\n The JSON representation for `Value` is JSON value."
"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."
}
},
"additionalProperties": true,
Expand Down
28 changes: 28 additions & 0 deletions jsonschemas/NoPackage.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$ref": "#/definitions/NoPackage",
"definitions": {
"NoPackage": {
"properties": {
"name": {
"type": "string"
},
"timestamp": {
"type": "string"
},
"id": {
"type": "integer"
},
"rating": {
"type": "number"
},
"complete": {
"type": "boolean"
}
},
"additionalProperties": true,
"type": "object",
"title": "No Package"
}
}
}
2 changes: 1 addition & 1 deletion jsonschemas/PayloadMessage2.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"additionalProperties": true,
"type": "object",
"title": "Payload Message 2",
"description": "PayloadMessage2 contains some common types\n \n PayloadMessage2 is used throughout the test suite\n and can have multi-line comments"
"description": "PayloadMessage2 contains some common types PayloadMessage2 is used throughout the test suite and can have multi-line comments"
}
}
}
2 changes: 1 addition & 1 deletion jsonschemas/WellKnown.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"items": {
"type": "integer",
"title": "Int 32 Value",
"description": "Wrapper message for `int32`.\n\n The JSON representation for `Int32Value` is JSON number."
"description": "Wrapper message for `int32`. The JSON representation for `Int32Value` is JSON number."
},
"type": "array"
},
Expand Down

0 comments on commit d61f023

Please sign in to comment.