{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-snow-family/refs/heads/main/json-schema/amazon-snow-family-get-snowball-usage-result-schema.json", "title": "GetSnowballUsageResult", "description": "GetSnowballUsageResult schema from Amazon Snow Family API", "type": "object", "properties": { "SnowballLimit": { "allOf": [ { "$ref": "#/components/schemas/Integer" }, { "description": "The service limit for number of Snow devices this account can have at once. The default service limit is 1 (one)." } ] }, "SnowballsInUse": { "allOf": [ { "$ref": "#/components/schemas/Integer" }, { "description": "The number of Snow devices that this account is currently using." } ] } } }