Skip to content

Commit

Permalink
Merge pull request #1055 from sbillinge/attestations
Browse files Browse the repository at this point in the history
attestations
  • Loading branch information
sbillinge authored Feb 15, 2024
2 parents 22634f7 + f97e5cf commit 35039d0
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
23 changes: 23 additions & 0 deletions news/attestations.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* funds_available to grants schema

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>
17 changes: 17 additions & 0 deletions regolith/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,11 @@
"end_month": "December",
"end_year": 2030,
"funder": "NumFOCUS",
"funds_available": [
{"quarter": "2020-Q2", "funds_available": 2800.00},
{"quarter": "2020-Q3", "funds_available": 2600.00},
{"quarter": "2021-Q1", "funds_available": 2100.00}
],
"narrative": "https://docs.google.com/document/d/1nZxqoL"
"-Ucni_aXLWmXtRDd3IWqW0mZBO65CEvDrsXZM/edit?usp"
"=sharing",
Expand Down Expand Up @@ -2844,6 +2849,18 @@
"required": True,
"type": "string",
},
"funds_available": {
"description": "funds available by quarter",
"required": False,
"schema": {
"schema": {
"quarter": {"required": False, "type": "string"},
"funds_available": {"required": False, "type": ("integer", "float")}
},
"type": "dict",
},
"type": "list",
},
"grant_id": {
"description": "the identifier for this work",
"required": False,
Expand Down

0 comments on commit 35039d0

Please sign in to comment.