Skip to content

Commit

Permalink
tags alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed Jul 11, 2023
1 parent e174d79 commit 0d5172f
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 57 deletions.
16 changes: 0 additions & 16 deletions api/specs/webserver/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,6 @@ servers:
enum:
- v0
default: v0
tags:
- name: activity
- name: admin
- name: authentication
- name: catalog
- name: cluster
- name: configuration
- name: maintenance
- name: nih-sparc
- name: project
- name: publication
- name: repository
- name: storage
- name: tag
- name: tasks
- name: user

paths:
# ADMIN -------------
Expand Down
138 changes: 97 additions & 41 deletions services/web/server/src/simcore_service_webserver/api/v0/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,22 +23,6 @@ servers:
enum:
- v0
default: v0
tags:
- name: activity
- name: admin
- name: authentication
- name: catalog
- name: cluster
- name: configuration
- name: maintenance
- name: nih-sparc
- name: project
- name: publication
- name: repository
- name: storage
- name: tag
- name: tasks
- name: user
paths:
'/email:test':
post:
Expand Down Expand Up @@ -134,6 +118,78 @@ paths:
type: object
error:
title: Error
/announcements:
get:
tags:
- announcements
summary: List Announcements
operationId: list_announcements
responses:
'200':
description: Successful Response
content:
application/json:
schema:
properties:
data:
items:
properties:
id:
type: string
title: Id
products:
items:
type: string
enum:
- osparc
- s4l
- s4llite
- tis
type: array
title: Products
start:
type: string
format: date-time
title: Start
end:
type: string
format: date-time
title: End
title:
type: string
title: Title
description:
type: string
title: Description
link:
type: string
title: Link
widgets:
items:
type: string
enum:
- login
- ribbon
- user-menu
type: array
title: Widgets
type: object
required:
- id
- products
- start
- end
- title
- description
- link
- widgets
title: Announcement
type: array
title: Data
error:
title: Error
type: object
title: 'Envelope[list[simcore_service_webserver.announcements._models.Announcement]]'
/:
get:
tags:
Expand Down Expand Up @@ -5919,54 +5975,54 @@ paths:
content:
application/json:
schema:
title: 'Envelope[ProjectsCommentsAPI]'
type: object
properties:
data:
title: ProjectsCommentsAPI
required:
- comment_id
- project_uuid
- user_id
- contents
- created
- modified
type: object
properties:
comment_id:
title: Comment Id
exclusiveMinimum: true
type: integer
exclusiveMinimum: true
title: Comment Id
description: 'Primary key, identifies the comment'
minimum: 0
project_uuid:
title: Project Uuid
type: string
description: project reference for this table
format: uuid
title: Project Uuid
description: project reference for this table
user_id:
title: User Id
exclusiveMinimum: true
type: integer
exclusiveMinimum: true
title: User Id
description: user reference for this table
minimum: 0
contents:
title: Contents
type: string
title: Contents
description: Contents of the comment
created:
title: Created
type: string
description: Timestamp on creation
format: date-time
title: Created
description: Timestamp on creation
modified:
title: Modified
type: string
description: Timestamp with last update
format: date-time
title: Modified
description: Timestamp with last update
additionalProperties: false
type: object
required:
- comment_id
- project_uuid
- user_id
- contents
- created
- modified
title: ProjectsCommentsAPI
error:
title: Error
type: object
title: 'Envelope[ProjectsCommentsAPI]'
put:
tags:
- project
Expand All @@ -5976,16 +6032,16 @@ paths:
parameters:
- required: true
schema:
title: Project Uuid
type: string
format: uuid
title: Project Uuid
name: project_uuid
in: path
- required: true
schema:
title: Comment Id
exclusiveMinimum: true
type: integer
exclusiveMinimum: true
title: Comment Id
minimum: 0
name: comment_id
in: path
Expand Down

0 comments on commit 0d5172f

Please sign in to comment.