Skip to content

Commit

Permalink
fix field name
Browse files Browse the repository at this point in the history
  • Loading branch information
azizbekxm committed Nov 14, 2024
1 parent 5fc01c7 commit ea82824
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mod-finance/examples/fy_finance_data_collection.sample
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"fyAllFinanceData": [
"fyFinanceData": [
{
"fiscalYearId": "123e4567-e89b-12d3-a456-426614174004",
"fiscalYearCode": "FY2023",
Expand Down
1 change: 1 addition & 0 deletions mod-finance/schemas/fy_finance_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Finance data for a fiscal year",
"type": "object",
"javaName": "FyFinanceData",
"properties": {
"fiscalYearId": {
"description": "UUID of the fiscal year",
Expand Down
5 changes: 3 additions & 2 deletions mod-finance/schemas/fy_finance_data_collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
"description": "A collection of fiscal year finance data",
"type": "object",
"properties": {
"fyAllFinanceData": {
"fyFinanceData": {
"description": "The list of fiscal year finance data objects contained in this collection",
"type": "array",
"id": "fyFinanceData",
"items": {
"type": "object",
"$ref": "fy_finance_data.json"
Expand All @@ -18,7 +19,7 @@
},
"additionalProperties": false,
"required": [
"fyAllFinanceData",
"fyFinanceData",
"totalRecords"
]
}

0 comments on commit ea82824

Please sign in to comment.