Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

isQueryParamUnsupported property #315

Merged
merged 3 commits into from
Oct 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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