-
-
Notifications
You must be signed in to change notification settings - Fork 54
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
feat: add object descriptions and examples #425
Merged
asyncapi-bot
merged 52 commits into
asyncapi:next-major-spec
from
AceTheCreator:v3-description
Nov 21, 2023
Merged
Changes from 12 commits
Commits
Show all changes
52 commits
Select commit
Hold shift + click to select a range
43f0eb7
chore(deps): bump gopkg.in/yaml.v3 from 3.0.0-20200313102051-9f266ea9…
dependabot[bot] ff3ab77
chore: exclude tools/bundler/node_modules from final package (#424)
Baldinof 4e2cb9b
added description and object examples to schema 3.0.0
AceTheCreator 1ef60eb
Merge branch 'master' into v3-description
AceTheCreator a0f064a
removed changes in go file
AceTheCreator 0fc19aa
.
AceTheCreator f04815f
remove changes in npmignore file
AceTheCreator e8d4e95
.
AceTheCreator bbb288a
.
AceTheCreator 3410019
Delete .DS_Store
AceTheCreator f3fd0c8
Delete definitions/.DS_Store
AceTheCreator 1ce3214
Merge branch 'next-major-spec' into v3-description
AceTheCreator ff4519f
Merge branch 'next-major-spec' into v3-description
AceTheCreator 0f5b35f
Delete examples/.DS_Store
AceTheCreator 402c439
fixed a typo
AceTheCreator 2ab9038
chore(deps-dev): bump @babel/traverse from 7.12.13 to 7.23.2 (#437)
dependabot[bot] 52beabb
Merge branch 'next-major-spec' into v3-description
AceTheCreator 7d1bdd7
testing formatter
AceTheCreator 11f6f3d
did it fix?
AceTheCreator 90b74e5
Merge branch 'asyncapi:master' into v3-description
AceTheCreator e3e90cc
Update apiKey.json
AceTheCreator a9e1df7
Update X509.json
AceTheCreator 07c064b
Update SaslPlainSecurityScheme.json
AceTheCreator 5750bb6
Update SaslScramSecurityScheme.json
AceTheCreator 601e209
Update components.json
AceTheCreator c493bba
Update correlationId.json
AceTheCreator 60e4803
Update externalDocs.json
AceTheCreator 359535e
Update messageObject.json
AceTheCreator b29cc80
Update messageTrait.json
AceTheCreator 5eda720
Update oauth2Flow.json
AceTheCreator 41991a1
Update oauth2Flows.json
AceTheCreator 2bd7e02
Update operation.json
AceTheCreator 74badf9
Update operationReplyAddress.json
AceTheCreator 391e28f
Update operationTrait.json
AceTheCreator 1c8c66b
Update operations.json
AceTheCreator f4be1f4
Update parameter.json
AceTheCreator 0a7a8fe
Update parameters.json
AceTheCreator 88d260b
Update server.json
AceTheCreator 6503d49
Update serverVariable.json
AceTheCreator 32c6f17
Update servers.json
AceTheCreator 2a48f05
Update symmetricEncryption.json
AceTheCreator a2e673d
Update tag.json
AceTheCreator 5b30654
Update userPassword.json
AceTheCreator 17de8e2
Update anySchema.json
AceTheCreator a1e6abd
Update channel.json
AceTheCreator 58dae68
Update channels.json
AceTheCreator d7b9c1f
Update contact.json
AceTheCreator 688924b
Update license.json
AceTheCreator 8369438
ci: update of files from global .github repo (#449)
asyncapi-bot fe18a3c
Merge branch 'asyncapi:master' into v3-description
AceTheCreator e7ec972
Merge branch 'next-major-spec' into v3-description
AceTheCreator 4e96c5c
revert
AceTheCreator File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
{ | ||
"type": "object", | ||
"description": "A simple object to allow referencing other components in the specification, internally and externally.", | ||
"required": [ | ||
"$ref" | ||
], | ||
"properties": { | ||
"$ref": { | ||
"description": "The reference string.", | ||
"$ref": "http://asyncapi.com/definitions/3.0.0/ReferenceObject.json" | ||
} | ||
}, | ||
"example": { | ||
"$ref": "http://asyncapi.com/examples/3.0.0/ReferenceObject.json" | ||
}, | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "http://asyncapi.com/definitions/3.0.0/Reference.json" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Not sure how this is handled at CI but this indentation is wrong. There are others as well, so please check 🙏