Sure @abm
Here's the JSON.
{
"type": "array",
"items": {
"type": "object",
"properties": {
"Acronym/Short Name": {
"type": [
"string",
"null"
]
},
"Deliverable Name": {
"type": [
"string",
"null"
]
},
"First Reviewer: Full Name": {
"type": [
"string",
"null"
]
},
"Internal Due Date": {
"type": [
"string",
"null"
]
},
"Date Due to Donor": {
"type": [
"string",
"null"
]
},
"Comments on Deliverable": {
"type": [
"string",
"null"
]
},
"Deliverable Type": {
"type": [
"string",
"null"
]
},
"Deliverable Frequency": {
"type": [
"string",
"null"
]
},
"Deliverables and Reports ID": {
"type": [
"string",
"null"
]
},
"Country: Country Name": {
"type": [
"string",
"null"
]
}
},
"required": [
"Acronym/Short Name",
"Deliverable Name",
"First Reviewer: Full Name",
"Internal Due Date",
"Date Due to Donor",
"Comments on Deliverable",
"Deliverable Type",
"Deliverable Frequency",
"Deliverables and Reports ID",
"Country: Country Name"
]
}
}
The excel has all the same headers as what's listed in the JSON and I want to use the "deliverables and Reports ID" to determine which ones to update, add, or delete.
| Acronym/Short Name | Deliverable Name | First Reviewer: Full Name | Internal Due Date | Date Due to Donor | Comments on Deliverable | Deliverable Type | Deliverable Frequency | Deliverables and Reports ID | Country: Country Name |
Thanks for taking the time to build out a solution.