Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
71 changes: 56 additions & 15 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -647,29 +647,48 @@ 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
maxLength: 128
Comment thread
swetshaw marked this conversation as resolved.
Outdated
description: Start date for proposal acceptations
endDate:
type: string
format: date-time
description: Deadline for proposal submission
maxLength: 128
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",
Comment thread
swetshaw marked this conversation as resolved.
Outdated
"milestone"
]
reviewType:
type: string
maxLength: 128
Comment thread
swetshaw marked this conversation as resolved.
enum: [
"voting",
"rubric"
]
creatorId:
$ref: '#/components/schemas/OwnerID'
workspaceId:
Expand All @@ -690,19 +709,41 @@ components:
title:
type: string
maxLength: 255
summary:
startDate:
type: string
maxLength: 1024
format: date-time
maxLength: 128
description: Start date for proposal acceptations
endDate:
type: string
format: date-time
description: Deadline for proposal submission
maxLength: 128
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:
type: string
description: the workspace the grant is from
maxLength: 128
fields:
$ref: '#/components/schemas/GrantFieldMap'
grantManagers:
Expand Down
Loading