Skip to content

Commit ad8f353

Browse files
Apply suggestions from code review
1 parent a2cefb2 commit ad8f353

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aspnetcore/fundamentals/openapi/include-metadata.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -534,8 +534,8 @@ used in the app. In ASP.NET Core Web API apps, the default value of this propert
534534

535535
When the <xref:System.Text.Json.JsonSerializerOptions.NumberHandling> property is set to `JsonNumberHandling.AllowReadingFromString`, the numeric types are mapped as follows:
536536

537-
| C# Type | OpenAPI `type` | OpenAPI `format` | Other assertions |
538-
| -------------- | ---------------- | ---------------- | ------------------------------ |
537+
| C# Type | OpenAPI `type` | OpenAPI `format` | Other assertions | <!-- -->
538+
| -------------- | ---------------- | ---------------- | ------------------------------ | <!-- -->
539539
| int | [integer,string] | int32 | pattern `<digits>` | <!-- pattern: "^-?(?:0|[1-9]\\d*)$" -->
540540
| long | [integer,string] | int64 | pattern `<digits>` | <!-- -->
541541
| short | [integer,string] | int16 | pattern `<digits>` | <!-- -->
@@ -688,7 +688,7 @@ For example, a C# property defined as `string?` is represented in the generated
688688

689689
If the app is configured to produce OpenAPI v3.0 or OpenAPI v2 documents, nullable value or reference types have `nullable: true` in the generated schema because these OpenAPI versions do not allow the `type` field to be an array.
690690

691-
::moniker-end
691+
:::moniker-end
692692

693693
#### additionalProperties
694694

0 commit comments

Comments
 (0)