Skip to content
Open
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
16 changes: 14 additions & 2 deletions docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,9 @@ paths:
- $ref: "#/components/schemas/ProjectReleaseFullName"
name:
$ref: "#/components/schemas/Project/properties/name"
displayName:
description: Defaults to `name` if not provided.
$ref: "#/components/schemas/Project/properties/displayName"
files:
description: |
File paths and their corresponding universal URLs associated with the project.
Expand Down Expand Up @@ -267,10 +270,12 @@ paths:
- $ref: "#/components/schemas/ProjectFullName"
- $ref: "#/components/schemas/ProjectReleaseFullName"
- name: keyword
description: Filter projects by name pattern.
description: Filter projects by display name or name pattern.
in: query
schema:
$ref: "#/components/schemas/Project/properties/name"
type: string
examples:
- Niu Xiao Qi
- name: visibility
description: Filter projects by visibility.
in: query
Expand Down Expand Up @@ -400,6 +405,8 @@ paths:
$ref: "#/components/schemas/Project/properties/files"
visibility:
$ref: "#/components/schemas/Project/properties/visibility"
displayName:
$ref: "#/components/schemas/Project/properties/displayName"
description:
$ref: "#/components/schemas/Project/properties/description"
instructions:
Expand Down Expand Up @@ -2550,6 +2557,11 @@ components:
type: string
examples:
- NiuXiaoQi
displayName:
description: Display name of the project.
type: string
examples:
- Niu Xiao Qi
version:
description: Version number of the project.
type: integer
Expand Down