-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix Arazzo json pointers and other minor issues
- Loading branch information
1 parent
56d2e8f
commit 449a2b2
Showing
10 changed files
with
22 additions
and
1,588 deletions.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,12 +4,13 @@ info: | |
description: >- | ||
Use the Museum API as an example in a simple Arazzo workflow. | ||
Built with love by Redocly. | ||
version: 1.0.0 | ||
version: 1.0.1 | ||
|
||
sourceDescriptions: | ||
- name: museum-api | ||
type: openapi | ||
url: ../openapi.yaml | ||
x-serverUrl: "http://localhost:4000/_mock/openapi" # For local development testing | ||
|
||
workflows: | ||
- workflowId: get-museum-tickets | ||
|
@@ -27,11 +28,11 @@ workflows: | |
requestBody: | ||
payload: | ||
ticketType: general | ||
ticketDate: 2023-09-07 | ||
ticketDate: '2023-09-07' | ||
email: [email protected] | ||
successCriteria: | ||
- condition: $statusCode == 201 | ||
outputs: | ||
ticketId: $response.body.ticketId | ||
ticketId: $response.body#/ticketId | ||
outputs: | ||
ticketId: $steps.buy-tickets.outputs.ticketId |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ openapi: 3.1.0 | |
info: | ||
title: Redocly Museum API | ||
description: Imaginary, but delightful Museum API for interacting with museum services and information. Built with love by Redocly. | ||
version: 1.2.0 | ||
version: 1.2.1 | ||
termsOfService: 'https://redocly.com/subscription-agreement/' | ||
contact: | ||
email: [email protected] | ||
|
@@ -285,7 +285,7 @@ components: | |
ticketId: | ||
$ref: "#/components/schemas/TicketId" | ||
ticketDate: | ||
description: Date the ticket is valid for. | ||
description: Date when this ticket can be used for museum entry. | ||
$ref: "#/components/schemas/Date" | ||
ticketType: | ||
$ref: "#/components/schemas/TicketType" | ||
|
@@ -454,7 +454,7 @@ components: | |
summary: Create special event | ||
value: | ||
name: Mermaid Treasure Identification and Analysis | ||
location: Under the seaaa 🦀 🎶 🌊. | ||
location: Under the seaaa ��� 🎶 🌊. | ||
eventDescription: Join us as we review and classify a rare collection of 20 thingamabobs, gadgets, gizmos, whoosits, and whatsits, kindly donated by Ariel. | ||
dates: | ||
- '2023-09-05' | ||
|
Oops, something went wrong.