AppSumo · Schema
License
An AppSumo software license purchased through the marketplace
MarketplaceSaaSSoftware Deals
Properties
| Name | Type | Description |
|---|---|---|
| licenseKey | string | Unique license key for activation |
| productSlug | string | AppSumo product slug identifier |
| status | string | Current license status |
| tier | string | License tier (Tier 1, 2, 3, etc.) |
| activatedAt | string | When the license was activated |
| userId | string | AppSumo user who purchased the license |
| string | Purchaser email address |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/appsumo/main/json-schema/license-schema.json",
"title": "License",
"description": "An AppSumo software license purchased through the marketplace",
"type": "object",
"properties": {
"licenseKey": {
"type": "string",
"description": "Unique license key for activation"
},
"productSlug": {
"type": "string",
"description": "AppSumo product slug identifier"
},
"status": {
"type": "string",
"enum": [
"active",
"inactive",
"refunded"
],
"description": "Current license status"
},
"tier": {
"type": "string",
"description": "License tier (Tier 1, 2, 3, etc.)"
},
"activatedAt": {
"type": "string",
"format": "date-time",
"description": "When the license was activated"
},
"userId": {
"type": "string",
"description": "AppSumo user who purchased the license"
},
"email": {
"type": "string",
"format": "email",
"description": "Purchaser email address"
}
},
"required": [
"licenseKey",
"productSlug",
"status"
]
}