Skip to content
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

Merged
merged 27 commits into from
Aug 20, 2024
Merged

Add JSON schema support #1766

merged 27 commits into from
Aug 20, 2024

Conversation

MaggieKimani1
Copy link
Contributor

@MaggieKimani1 MaggieKimani1 commented Jul 30, 2024

This PR:

  • Adds a JSON schema model class with all known keywords
  • Implements deserialization of V2, V3 and V31 OpenApi files into the in-memory Object model
  • Implements serialization for V2, V3 and V31 keywords
  • Adds tests

Fixes #1733, #1763, #1764, #1765

@MaggieKimani1 MaggieKimani1 marked this pull request as ready for review August 8, 2024 14:23
Copy link

Quality Gate Failed Quality Gate failed

Failed conditions
63.3% Coverage on New Code (required ≥ 80%)
30.3% Duplication on New Code (required ≤ 3%)

See analysis details on SonarCloud

/// 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; }
Copy link
Member

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; }
Copy link
Member

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; }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove

@MaggieKimani1
Copy link
Contributor Author

Resolving these comments in a separate PR

@MaggieKimani1 MaggieKimani1 merged commit 86b6944 into release/2.0.0 Aug 20, 2024
8 of 9 checks passed
@MaggieKimani1 MaggieKimani1 deleted the mk/add-json-schema-model branch August 20, 2024 14:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants