Skip to content

Fix OpenAPI schema issues for API explorer #25

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

Merged
merged 1 commit into from
Jul 11, 2025
Merged
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
43 changes: 5 additions & 38 deletions docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -522,24 +522,7 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/events'
patch:
summary: Lock all Test Data Files
operationId: lock_all_test_data
tags:
- Test Data
responses:
'200':
description: All test data files locked successfully
content:
application/json:
schema:
$ref: '#/components/schemas/events'
'500':
description: Processing error
content:
application/json:
schema:
$ref: '#/components/schemas/events'


/api/test_data/{file_name}/:
get:
Expand Down Expand Up @@ -650,24 +633,7 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/events'
patch:
summary: Lock all Migration Files
operationId: lock_all_migrations
tags:
- Migrations
responses:
'200':
description: All migration files locked successfully
content:
application/json:
schema:
$ref: '#/components/schemas/events'
'500':
description: Processing error
content:
application/json:
schema:
$ref: '#/components/schemas/events'



/api/migrations/{file_name}/:
Expand Down Expand Up @@ -954,8 +920,9 @@ components:
file:
type: object
properties:
name:
file_name:
type: string
description: Name of the file
created_at:
type: string
format: date-time
Expand Down Expand Up @@ -1065,7 +1032,7 @@ components:
properties:
description: Properties of an Object type
type: object
properties:
additionalProperties:
$ref: '#/components/schemas/dictionary'
additionalProperties:
description: Should the object type allow additional properties
Expand Down
Loading