{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/tm-forum/refs/heads/main/json-schema/tmf622-product-ordering-duration-schema.json",
"title": "Duration",
"description": "A time interval in a given unit of time",
"type": "object",
"properties": {
"amount": {
"type": "integer",
"description": "Time interval (number of seconds, minutes, hours, etc.)"
},
"units": {
"type": "string",
"description": "Unit of time (seconds, minutes, hours, etc.)"
}
}
}