{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ValidityRequest",
"title": "ValidityRequest",
"type": "object",
"description": "Information about the period during which the subscription will be valid.",
"properties": {
"begin": {
"type": "string",
"nullable": true,
"description": "Subscription's beginning date with the format `yyyy-mm-ddThh:mm:ss`.",
"example": "2022-06-10T00:00:00"
},
"end": {
"type": "string",
"nullable": true,
"description": "Subscription's ending date with the format `yyyy-mm-ddThh:mm:ss`.",
"example": "2023-06-10T00:00:00"
}
},
"additionalProperties": false
}