Skip to content

Commit

Permalink
Update bundled file
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed May 13, 2024
1 parent e7e8890 commit 1336fb3
Showing 1 changed file with 80 additions and 8 deletions.
88 changes: 80 additions & 8 deletions openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ info:
license:
name: MIT
url: https://github.com/d-yoshi/redmine-openapi/blob/main/LICENSE
version: 0.13.5
version: 0.14.0
servers:
- url: /
security:
Expand Down Expand Up @@ -482,8 +482,8 @@ paths:
enum:
- trackers
- issue_categories
- enabled_modules
- time_entry_activities
- enabled_modules
- issue_custom_fields
explode: false
responses:
Expand All @@ -499,7 +499,7 @@ paths:
projects:
type: array
items:
$ref: '#/components/schemas/project'
$ref: '#/components/schemas/project.simple'
total_count:
type: integer
offset:
Expand Down Expand Up @@ -544,12 +544,15 @@ paths:
type: boolean
parent_id:
type: integer
nullable: true
inherit_members:
type: boolean
default_assigned_to_id:
type: integer
nullable: true
default_version_id:
type: integer
nullable: true
tracker_ids:
type: array
items:
Expand Down Expand Up @@ -605,8 +608,8 @@ paths:
enum:
- trackers
- issue_categories
- enabled_modules
- time_entry_activities
- enabled_modules
- issue_custom_fields
explode: false
responses:
Expand Down Expand Up @@ -645,18 +648,23 @@ paths:
type: string
description:
type: string
nullable: true
homepage:
type: string
nullable: true
is_public:
type: boolean
parent_id:
type: integer
nullable: true
inherit_members:
type: boolean
default_assigned_to_id:
type: integer
nullable: true
default_version_id:
type: integer
nullable: true
tracker_ids:
type: array
items:
Expand Down Expand Up @@ -3636,6 +3644,66 @@ components:
type: array
items:
$ref: '#/components/schemas/issue_status'
project.simple:
type: object
required:
- id
- name
- identifier
- description
- status
- is_public
- inherit_members
- created_on
- updated_on
properties:
id:
type: integer
name:
type: string
identifier:
type: string
description:
type: string
nullable: true
parent:
$ref: '#/components/schemas/id_name'
status:
type: integer
is_public:
type: boolean
inherit_members:
type: boolean
custom_fields:
type: array
items:
$ref: '#/components/schemas/custom_field_value'
trackers:
type: array
items:
$ref: '#/components/schemas/id_name'
issue_categories:
type: array
items:
$ref: '#/components/schemas/id_name'
time_entry_activities:
type: array
items:
$ref: '#/components/schemas/id_name'
enabled_modules:
type: array
items:
$ref: '#/components/schemas/id_name'
issue_custom_fields:
type: array
items:
$ref: '#/components/schemas/id_name'
created_on:
type: string
format: date-time
updated_on:
type: string
format: date-time
project:
type: object
required:
Expand All @@ -3661,14 +3729,18 @@ components:
homepage:
type: string
nullable: true
parent_id:
type: integer
parent:
$ref: '#/components/schemas/id_name'
status:
type: integer
is_public:
type: boolean
inherit_members:
type: boolean
default_version:
$ref: '#/components/schemas/id_name'
default_assignee:
$ref: '#/components/schemas/id_name'
custom_fields:
type: array
items:
Expand All @@ -3681,11 +3753,11 @@ components:
type: array
items:
$ref: '#/components/schemas/id_name'
enabled_modules:
time_entry_activities:
type: array
items:
$ref: '#/components/schemas/id_name'
time_entry_activities:
enabled_modules:
type: array
items:
$ref: '#/components/schemas/id_name'
Expand Down

0 comments on commit 1336fb3

Please sign in to comment.