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

chore: sourceDescription typo and emphasis on MUST #234

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# The Arazzo Specification
![alt Arazzo logo](./images/Arrazo-logo.png)
![alt Arazzo logo](./images/Arazzo-logo.png)

The Arazzo Specification is a community-driven open specification within the [OpenAPI Initiative](https://www.openapis.org/), a Linux Foundation Collaborative Project.

Expand Down
6 changes: 4 additions & 2 deletions examples/1.0.0/bnpl-arazzo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,13 @@ workflows:
- name: CustomerAuthorizationRequired
type: goto
stepId: authenticateCustomerAndAuthorizeLoan
condition: $response.body.redirectAuthToken != null
criteria:
- condition: $response.body.redirectAuthToken != null
- name: CustomerAuthorizationNotRequired
type: goto
stepId: retrieveFinalizedPaymentPlan
condition: $response.body.redirectAuthToken == null
criteria:
- condition: $response.body.redirectAuthToken == null
outputs:
redirectAuthToken: $response.body.redirectAuthToken
loanTransactionResourceUrl: $response.body.links.self
Expand Down
2 changes: 1 addition & 1 deletion examples/1.0.0/oauth.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ paths:
type: string
client_secret:
type: string
requiredProperties:
required:
- grant_type
- client_id
responses:
Expand Down
6 changes: 4 additions & 2 deletions examples/1.0.0/pet-coupons.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,15 @@ paths:
description: Which page of results to display. First page is 1.
required: true
schema:
type: int32
type: integer
format: int32
- name: pageSize
in: query
description: Number of results to display per page.
required: false
schema:
type: int32
type: integer
format: int32
default: 10
responses:
'200':
Expand Down
Binary file modified images/Arazzo-Specification-Structure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/Arazzo-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed images/Arrazo-logo.png
Binary file not shown.
2 changes: 1 addition & 1 deletion versions/1.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ In order to preserve the ability to round-trip between YAML and JSON formats, YA

It is RECOMMENDED that the entry Arazzo document be named: `arazzo.json` or `arazzo.yaml`.

An Arazzo Description MAY be made up of a single document or be divided into multiple, connected parts at the discretion of the author. If workflows from other documents are being referenced, they must by included as a [Source Description Object](#source-description-object). In a multi-document description, the document containing the [Arazzo Specification Object](#arazzo-specification-object) is known as the **entry Arazzo document**.
An Arazzo Description MAY be made up of a single document or be divided into multiple, connected parts at the discretion of the author. If workflows from other documents are being referenced, they MUST be included as a [Source Description Object](#source-description-object). In a multi-document description, the document containing the [Arazzo Specification Object](#arazzo-specification-object) is known as the **entry Arazzo document**.

### Data Types

Expand Down
Loading