Skip to content

Commit

Permalink
fix: refactor schema to make test server work
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcL committed Dec 20, 2024
1 parent 6dcbb7a commit d471ed1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ delete:
description: The ID of the project.
required: true
schema:
type: string
type: string
- $ref: '../../../users/spec/schemas/parameters/userIdentifier.yml'
responses:
'204':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,12 @@ delete:
summary: Delete a project
description: Delete a project from your instance.
parameters:
- $ref: '../schemas/parameters/projectId.yml'
- in: path
name: projectId
description: The ID of the project.
required: true
schema:
type: string
responses:
'204':
description: Operation successful.
Expand All @@ -24,7 +29,12 @@ put:
summary: Update a project
description: Update a project.
parameters:
- $ref: '../schemas/parameters/projectId.yml'
- in: path
name: projectId
description: The ID of the project.
required: true
schema:
type: string
requestBody:
description: Updated project object.
content:
Expand Down

0 comments on commit d471ed1

Please sign in to comment.