{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "RequestValidityTime",
"type": "object",
"description": "Validity of the API request. It protects the API from unauthorized request or man-in-the-middle (MITM) attacks
For example, if the validity of the API request is set for a maximum of 5 minutes (including retry attempts), and someone tries to post the same request after 5 minutes, then the system rejects the API request without processing.",
"properties": {
"dataValidUntilTimestamp": {
"type": "string",
"description": "The date and time after which the request is considered as invalid. If the timestamp of the institution is greater than this timestamp, the API request is considered as expired and is returned.
The 'dataValidUntilTimestamp' parameter is converted into the institution time zone before comparing it with the institution date and time. It is expressed in ISO 8601 extended format. Must be either
'YYYY-MM-DDThh:mm:ss[.sss]Z'
or 'YYYY-MM-DDThh:mm:ss[.sss] (+|-) hh:mm' where [.sss] is optional and can be 1 to 3 digits."
}
}
}