Skip to content
Open
Show file tree
Hide file tree
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
62 changes: 47 additions & 15 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -647,29 +647,44 @@ components:
additionalProperties: false
required:
- title
- summary
- startDate
- endDate
- details
- reward
- payoutType
- reviewType
- creatorId
- workspaceId
- fields
properties:
title:
type: string
maxLength: 255
summary:
startDate:
type: string
maxLength: 1024
format: date-time
description: Start date for proposal acceptations
endDate:
type: string
format: date-time
description: Deadline for proposal submission
details:
type: string
maxLength: 4096
deadline:
reward:
$ref: '#/components/schemas/Amount'
payoutType:
type: string
format: date-time
description: Deadline of the application
maxLength: 128
reward:
$ref: '#/components/schemas/GrantReward'
enum:
- "in one go"
- "milestone"
reviewType:
type: string
maxLength: 128
enum:
- "voting"
- "rubric"
creatorId:
$ref: '#/components/schemas/OwnerID'
workspaceId:
Expand All @@ -690,19 +705,36 @@ components:
title:
type: string
maxLength: 255
summary:
startDate:
type: string
maxLength: 1024
format: date-time
description: Start date for proposal acceptations
endDate:
type: string
format: date-time
description: Deadline for proposal submission
details:
type: string
maxLength: 4096
deadline:
reward:
$ref: '#/components/schemas/Amount'
payoutType:
type: string
enum:
- "in-one-go"
- "milestones"
reviewType:
type: string
format: date-time
description: Deadline of the application
maxLength: 128
reward:
$ref: '#/components/schemas/GrantReward'
enum:
- "voting"
- "rubrics"
creatorId:
$ref: '#/components/schemas/OwnerID'
workspaceId:
type: string
description: the workspace the grant is from
maxLength: 128
fields:
$ref: '#/components/schemas/GrantFieldMap'
grantManagers:
Expand Down
Loading