Skip to content

Commit

Permalink
Fix review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
lnash94 committed Nov 27, 2024
1 parent ff535a0 commit d99164b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions docs/ballerina-to-oas/spec/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -1228,7 +1228,7 @@ oneOf:
>```ballerina
> type RecB record {|
> *packageA:RecA;
> string b = "c";
> string b = "b";
>|};
>```
> In the OpenAPI Specification (OAS) mapping for `RecB`, the default value access API cannot retrieve default values
Expand All @@ -1239,10 +1239,8 @@ oneOf:
> properties:
> a:
> type: integer
> default: 10
> c:
> type: string
> default: c
> additionalProperties: false
> RecB:
> type: object
Expand All @@ -1253,8 +1251,8 @@ oneOf:
> type: object
> properties:
> b:
> type: integer
> format: int64
> type: string
> default: b
> a:
> type: integer
> c:
Expand Down

0 comments on commit d99164b

Please sign in to comment.