Skip to content

Commit

Permalink
Swap inputs and parameters to match schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ndenny committed Feb 7, 2024
1 parent e021569 commit c2d3b8b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions versions/1.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -548,12 +548,12 @@ my.org.User

```yaml
components:
inputs:
parameters:
storeId:
name: storeId
in: header
value: $inputs.x-store-id
parameters:
inputs:
pagination:
type: object
properties:
Expand All @@ -567,14 +567,14 @@ components:

```json
"components": {
"inputs": {
"parameters": {
"storeId": {
"name": "storeId",
"in": "header",
"value": "$inputs.x-store-id"
}
},
"parameters": {
"inputs": {
"pagination": {
"type": "object",
"properties": {
Expand Down

0 comments on commit c2d3b8b

Please sign in to comment.