Skip to content

Commit

Permalink
Merge pull request #315 from ConsumerDataStandardsAustralia/maintenan…
Browse files Browse the repository at this point in the history
…ce/469-with-delta-and-notes

isQueryParamUnsupported property
  • Loading branch information
JamesMBligh authored Oct 8, 2023
2 parents 9506563 + d5a43b9 commit 1f013a3
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
4 changes: 3 additions & 1 deletion slate/source/includes/_banking_apis.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ This specification defines the APIs for Data Holders exposing Banking endpoints.
<tr><td><a href='./includes/swagger/cds_banking.yaml'>Banking OpenAPI Specification (YAML)</a></td></tr>
</table>


```diff
Added MetaPaginatedTransaction schema to 'Get Transactions For Account' to include the isQueryParamUnsupported property
```

<%= partial "includes/cds_banking.md" %>
<%= partial "includes/banking/_product_categories.md" %>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ This release addresses the following minor defects raised on [Standards Staging]

This release addresses the following change requests raised on [Standards Maintenance](https://github.com/ConsumerDataStandardsAustralia/standards-maintenance/issues):

- [Maintenance Issue 469 - Add isQueryParamUnsupported to MetaPaginated for schema validation](https://github.com/ConsumerDataStandardsAustralia/standards-maintenance/issues/469)
- [Maintenance Issue 611 - Clarification of Energy PRD Obligations](https://github.com/ConsumerDataStandardsAustralia/standards-maintenance/issues/611)

### Decision Proposals
Expand Down Expand Up @@ -49,6 +50,7 @@ This release addresses the following Decision Proposals published on [Standards]

|Change|Description|Link|
|------|-----------|----|
| isQueryParamUnsupported property | **[Standards Maintenance #469](https://github.com/ConsumerDataStandardsAustralia/standards-maintenance/issues/469):** Added MetaPaginatedTransaction schema to 'Get Transactions For Account' to include the isQueryParamUnsupported property | [Banking APIs](../../#banking-apis) |

## Information Security Profile

Expand Down
20 changes: 19 additions & 1 deletion swagger-gen/api/cds_banking.json
Original file line number Diff line number Diff line change
Expand Up @@ -4560,7 +4560,7 @@
"$ref": "#/components/schemas/LinksPaginated"
},
"meta": {
"$ref": "#/components/schemas/MetaPaginated"
"$ref": "#/components/schemas/MetaPaginatedTransaction"
}
}
},
Expand Down Expand Up @@ -5952,6 +5952,24 @@
}
}
},
"MetaPaginatedTransaction": {
"allOf": [
{
"$ref": "#/components/schemas/MetaPaginated"
},
{
"type": "object",
"properties": {
"isQueryParamUnsupported": {
"type": "boolean",
"description": "**true** if *\"text\"* query parameter is not supported",
"default": false,
"x-cds-type": "Boolean"
}
}
}
]
},
"MetaError": {
"type": "object",
"properties": {
Expand Down

0 comments on commit 1f013a3

Please sign in to comment.