Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions src/Steeltoe.io/wwwroot/schema/latest/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
},
"Scheme": {
"type": "string",
"description": "Gets or sets the scheme to register the running app with (\"http\" or \"https\"). Default value: http."
"description": "Gets or sets the scheme to register the running app with (\"http\" or \"https\")."
},
"ServiceName": {
"type": "string",
Expand Down Expand Up @@ -1233,9 +1233,13 @@
"SerializerOptions": {
"type": "object",
"properties": {
"AllowDuplicateProperties": {
"type": "boolean",
"description": "Gets or sets a value that indicates whether duplicate property names are allowed when deserializing JSON objects."
},
"AllowOutOfOrderMetadataProperties": {
"type": "boolean",
"description": "Allows JSON metadata properties to be specified after regular properties in a deserialized JSON object."
"description": "Gets or sets a value that indicates whether JSON metadata properties can be specified after regular properties in a deserialized JSON object."
},
"AllowTrailingCommas": {
"type": "boolean",
Expand All @@ -1250,7 +1254,9 @@
"Never",
"Always",
"WhenWritingDefault",
"WhenWritingNull"
"WhenWritingNull",
"WhenWriting",
"WhenReading"
],
"description": "Gets or sets a value that determines when properties with default values are ignored during serialization or deserialization. The default value is 'System.Text.Json.Serialization.JsonIgnoreCondition.Never'."
},
Expand Down
12 changes: 9 additions & 3 deletions src/Steeltoe.io/wwwroot/schema/v4/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
},
"Scheme": {
"type": "string",
"description": "Gets or sets the scheme to register the running app with (\"http\" or \"https\"). Default value: http."
"description": "Gets or sets the scheme to register the running app with (\"http\" or \"https\")."
},
"ServiceName": {
"type": "string",
Expand Down Expand Up @@ -1233,9 +1233,13 @@
"SerializerOptions": {
"type": "object",
"properties": {
"AllowDuplicateProperties": {
"type": "boolean",
"description": "Gets or sets a value that indicates whether duplicate property names are allowed when deserializing JSON objects."
},
"AllowOutOfOrderMetadataProperties": {
"type": "boolean",
"description": "Allows JSON metadata properties to be specified after regular properties in a deserialized JSON object."
"description": "Gets or sets a value that indicates whether JSON metadata properties can be specified after regular properties in a deserialized JSON object."
},
"AllowTrailingCommas": {
"type": "boolean",
Expand All @@ -1250,7 +1254,9 @@
"Never",
"Always",
"WhenWritingDefault",
"WhenWritingNull"
"WhenWritingNull",
"WhenWriting",
"WhenReading"
],
"description": "Gets or sets a value that determines when properties with default values are ignored during serialization or deserialization. The default value is 'System.Text.Json.Serialization.JsonIgnoreCondition.Never'."
},
Expand Down