|
PPMS API Doc
|
Grant Cycles
Returns a list of grant cycles that are or were open to the public.
http://ppms-demo.cecs.pdx.edu/api/grant_cycles
| Name |
Type |
Required |
Default |
Description |
| is_open |
boolean |
No |
null |
If true, returns only the open grant cycles. If false, returns only the ended cycles. If not specified, returns both. |
| from_year |
int |
No |
null |
If specified, returns the grant cycles starting from the given year (inclusive). |
| to_year |
int |
No |
null |
If specified, returns the grant cycles upto the given year (exclusive). |
{
"grant_cycles": [
{
"id": 1,
"title": "First Grant",
"funding_program": "USDOT",
"grant_cycle_type": "Regular",
"begin_date": "2022-11-09",
"end_date": "2023-08-25",
"is_active": true,
"abstract_due_date": "2023-01-10",
"proposal_due_date": "2023-02-28",
"review_due_date": "2023-05-09",
"status": "abstract"
},
...
]
}
| Field Name |
Type |
Description |
| id |
int |
|
| title |
string |
|
| funding_program |
string |
|
| grant_cycle_type |
string |
|
| begin_date |
string |
Date in the format YYYY-MM-DD |
| end_date |
string |
Date in the format YYYY-MM-DD |
| is_active |
boolean |
|
| abstract_due_date |
string |
Date in the format YYYY-MM-DD |
| proposal_due_date |
string |
Date in the format YYYY-MM-DD |
| review_due_date |
string |
Date in the format YYYY-MM-DD |
| status |
string |
Indicates the stage at which the grant cycle is. Possible values: 'not started', 'abstract', 'proposal', 'review', 'consideration', or 'ended'. |
|