-
Notifications
You must be signed in to change notification settings - Fork 251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add JSON schema support #1766
Add JSON schema support #1766
Conversation
…rray and assign it to the type property
|
/// Unlike JSON Schema, the value MUST conform to the defined type for the Schema Object defined at the same level. | ||
/// For example, if type is string, then default can be "foo" but cannot be 1. | ||
/// </summary> | ||
public OpenApiAny Default { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggest using JsonNode here unless we need to use OpenApiAny. If we do, then let's also change enum.
/// <summary> | ||
/// Allows sending a null value for the defined schema. Default value is false. | ||
/// </summary> | ||
public bool Nullable { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nullable should be removed and represented as a member of the type array.
/// <summary> | ||
/// Indicates object is a placeholder reference to an actual object and does not contain valid data. | ||
/// </summary> | ||
public bool UnresolvedReference { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove
Resolving these comments in a separate PR |
This PR:
Fixes #1733, #1763, #1764, #1765