-
-
Notifications
You must be signed in to change notification settings - Fork 269
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
Decide what to do with OAS schema properties #1037
Comments
@Pakisan if they're using OpenAPI Schemas, they should specify so in the schemaFormat field, i.e., it should be Example with v3:asyncapi: 3.0.0
info:
title: Account Service
version: 1.0.0
description: This service is in charge of processing user signups
channels:
userSignedup:
address: user/signedup
messages:
UserSignedUp:
$ref: '#/components/messages/UserSignedUp'
operations:
sendUserSignedup:
action: send
channel:
$ref: '#/channels/userSignedup'
messages:
- $ref: '#/channels/userSignedup/messages/UserSignedUp'
components:
messages:
UserSignedUp:
payload:
schemaFormat: application/vnd.oai.openapi;version=3.0.0
schema:
type: object
properties:
displayName:
type: string
description: Name of the user
email:
type: string
format: email
description: Email of the user This is the schema parser in charge of interpreting it for the JS/TS parser: https://github.com/asyncapi/openapi-schema-parser. |
Hi, Fran. Thanks for
I agree with you, that in case of provided schemaFormat we can interpret is as Avro, OAS, ... But I want to clarify validation behavior when users didn't provide any asyncapi: 3.0.0
info:
title: Account Service
version: 1.0.0
description: This service is in charge of processing user signups
channels:
userSignedup:
address: user/signedup
messages:
UserSignedUp:
$ref: '#/components/messages/UserSignedUp'
operations:
sendUserSignedup:
action: send
channel:
$ref: '#/channels/userSignedup'
messages:
- $ref: '#/channels/userSignedup/messages/UserSignedUp'
components:
messages:
UserSignedUp:
payload:
schema:
type: object
properties:
displayName:
type: string
description: Name of the user
example: Pavel
nullable: true
readOnly: true
examples:
- Pavel
- Peter
email:
type: string
format: email
description: Email of the user
example: pavel@address.domain
readOnly: true
examples:
- email@host.domain |
The behaviour should be to fail. The examples you mentioned are not valid AsyncAPI schemas. Just because they're similar it doesn't mean we have to behave differently. |
Roger that. Looks like I have implemented strict validation correctly. Now it's time to dive into #957 to actualize specifications validation and bring new version to studio to reject specification which I was using as example, above |
This issue has been automatically marked as stale because it has not had recent activity 😴 It will be closed in 120 days if no further activity occurs. To unstale this issue, add a comment with a detailed explanation. There can be many reasons why some specific issue has no activity. The most probable cause is lack of time, not lack of interest. AsyncAPI Initiative is a Linux Foundation project not owned by a single for-profit company. It is a community-driven initiative ruled under open governance model. Let us figure out together how to push this issue forward. Connect with us through one of many communication channels we established here. Thank you for your patience ❤️ |
I want to propose to decide what to do with OpenAPI Schema properties which users are using in our schema.
This thread begun here - #1031
In JAsyncAPI I have implemented strict validation, that's why I have enfaced with multiple questions from users.
For example, last questions, from folks at Specmatic:
This is strange situation for me, when de jure, strict specification implementation must interpret them as specification error, but de facto, users can use them
Let's decide what to do and how to sync validation process in different tools
@fmvilas @derberg @dalelane @smoya @char0n @GreenRover
upd:
task for new validation process: #957
The text was updated successfully, but these errors were encountered: