We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When referencing the same component from other different components, Bundle() won't resolve the references correctly.
In this example:
The bundled output contains a external reference in UserValues to AssociationContext:
components: schemas: User.Context: type: object properties: values: type: array items: type: object properties: id: type: string description: Universal unique identifier of product property value. format: uuid example: dae18b3a-c5fc-4dc3-a53e-64c905d1f97b associationContext: type: array items: $ref: >- #/components/schemas/User.Context/properties/associationContext/items
API Samples: API UserContext UserValues AssociationContext
Results Obtained Expected
By changing UserValues to reference a duplicate of AssociationContext (UserValuesAssociationContext) the Bundle() works correctly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When referencing the same component from other different components, Bundle() won't resolve the references correctly.
In this example:
The bundled output contains a external reference in UserValues to AssociationContext:
API Samples:
API
UserContext
UserValues
AssociationContext
Results
Obtained
Expected
By changing UserValues to reference a duplicate of AssociationContext (UserValuesAssociationContext) the Bundle() works correctly.
The text was updated successfully, but these errors were encountered: