{ "$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" } } }