Skip to content
Draft
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
52 changes: 41 additions & 11 deletions dist/openapi/vrp-openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2351,8 +2351,14 @@
"minLength": 1
},
"RelatedDate": {
"description": "Date associated with the referred document line.",
"$ref": "#/components/schemas/ISODateTime"
"allOf": [
{
"description": "Date associated with the referred document line."
},
{
"$ref": "#/components/schemas/ISODateTime"
}
]
},
"LineDetails": {
"description": "Set of elements used to provide the content of the referred document line.",
Expand Down Expand Up @@ -3057,8 +3063,14 @@
"maxLength": 140
},
"CountryCode": {
"description": "Country of the entity that requires the regulatory reporting information.",
"$ref": "#/components/schemas/CountryCode"
"allOf": [
{
"description": "Country of the entity that requires the regulatory reporting information."
},
{
"$ref": "#/components/schemas/CountryCode"
}
]
}
}
},
Expand Down Expand Up @@ -3122,16 +3134,34 @@
"maxLength": 35
},
"Date": {
"description": "Date related to the specified type of regulatory reporting details.",
"$ref": "#/components/schemas/ISODateTime"
"allOf": [
{
"description": "Date related to the specified type of regulatory reporting details."
},
{
"$ref": "#/components/schemas/ISODateTime"
}
]
},
"Country": {
"description": "Country related to the specified type of regulatory reporting details.",
"$ref": "#/components/schemas/CountryCode"
"allOf": [
{
"description": "Country related to the specified type of regulatory reporting details."
},
{
"$ref": "#/components/schemas/CountryCode"
}
]
},
"Amount": {
"description": "Amount of money to be reported for regulatory and statutory requirements.",
"$ref": "#/components/schemas/OBActiveOrHistoricCurrencyAndAmount"
"allOf": [
{
"description": "Amount of money to be reported for regulatory and statutory requirements."
},
{
"$ref": "#/components/schemas/OBActiveOrHistoricCurrencyAndAmount"
}
]
},
"Information": {
"description": "Additional details that cater for specific domestic regulatory requirements. ",
Expand Down Expand Up @@ -3377,4 +3407,4 @@
}
}
}
}
}
25 changes: 15 additions & 10 deletions dist/openapi/vrp-openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1784,8 +1784,9 @@ components:
maxLength: 35
minLength: 1
RelatedDate:
description: Date associated with the referred document line.
$ref: '#/components/schemas/ISODateTime'
allOf:
- description: Date associated with the referred document line.
- $ref: '#/components/schemas/ISODateTime'
LineDetails:
description: Set of elements used to provide the content of the referred document line.
type: array
Expand Down Expand Up @@ -2443,8 +2444,9 @@ components:
minLength: 1
maxLength: 140
CountryCode:
description: Country of the entity that requires the regulatory reporting information.
$ref: '#/components/schemas/CountryCode'
allOf:
- description: Country of the entity that requires the regulatory reporting information.
- $ref: '#/components/schemas/CountryCode'
OBRegulatoryReporting1:
type: object
description: Information needed due to regulatory and statutory requirements
Expand Down Expand Up @@ -2503,14 +2505,17 @@ components:
minLength: 1
maxLength: 35
Date:
description: Date related to the specified type of regulatory reporting details.
$ref: '#/components/schemas/ISODateTime'
allOf:
- description: Date related to the specified type of regulatory reporting details.
- $ref: '#/components/schemas/ISODateTime'
Country:
description: Country related to the specified type of regulatory reporting details.
$ref: '#/components/schemas/CountryCode'
allOf:
- description: Country related to the specified type of regulatory reporting details.
- $ref: '#/components/schemas/CountryCode'
Amount:
description: Amount of money to be reported for regulatory and statutory requirements.
$ref: '#/components/schemas/OBActiveOrHistoricCurrencyAndAmount'
allOf:
- description: Amount of money to be reported for regulatory and statutory requirements.
- $ref: '#/components/schemas/OBActiveOrHistoricCurrencyAndAmount'
Information:
description: >-
Additional details that cater for specific domestic regulatory
Expand Down