Skip to content

Commit

Permalink
fixed bug in schema where everything was a definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Marshall committed Oct 18, 2023
1 parent 579aa7c commit b0cba01
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions schema/360-giving-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,38 +68,38 @@
}
}
}
},
"properties": {
"deiDetails": {
"type": "object",
"title": "DEI Details",
"description": "The DEI Details for this grant. Contains information about separate application areas and the responses to them.",
"required": [
"leadership",
"mission",
"project"
],
"properties": {
"deiVersion": {
"type": "string",
"title": "DEI Data Standard Version",
"description": "The version of the DEI Data Standard that this data uses e.g. 1.1",
"pattern": "^[1-9]+\\.[1-9]\\d*$"
},
"purposes": {
"type": "string",
"title": "Purposes",
"description": "The purposes of collecting this data."
},
"leadership": {
"$ref": "#/definitions/DeiApplicationArea"
},
"mission": {
"$ref": "#/definitions/DeiApplicationArea"
},
"project": {
"$ref": "#/definitions/DeiApplicationArea"
}
}
},
"properties": {
"deiDetails": {
"type": "object",
"title": "DEI Details",
"description": "The DEI Details for this grant. Contains information about separate application areas and the responses to them.",
"required": [
"leadership",
"mission",
"project"
],
"properties": {
"deiVersion": {
"type": "string",
"title": "DEI Data Standard Version",
"description": "The version of the DEI Data Standard that this data uses e.g. 1.1",
"pattern": "^[1-9]+\\.[1-9]\\d*$"
},
"purposes": {
"type": "string",
"title": "Purposes",
"description": "The purposes of collecting this data."
},
"leadership": {
"$ref": "#/definitions/DeiApplicationArea"
},
"mission": {
"$ref": "#/definitions/DeiApplicationArea"
},
"project": {
"$ref": "#/definitions/DeiApplicationArea"
}
}
}
Expand Down

0 comments on commit b0cba01

Please sign in to comment.