Properties
| Name | Type | Description |
|---|---|---|
| seats | object | |
| seats_used | integer | |
| seats_available | object | |
| kind | string | |
| days_until_expiration | integer | |
| expire_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/license-info",
"title": "license-info",
"type": "object",
"properties": {
"seats": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
},
"seats_used": {
"type": "integer"
},
"seats_available": {
"oneOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
},
"kind": {
"type": "string"
},
"days_until_expiration": {
"type": "integer"
},
"expire_at": {
"type": "string"
}
}
}