{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LicenseHistoryResult", "title": "LicenseHistoryResult", "type": "object", "description": "Paginated license history for the authenticated member", "properties": { "nb_results": { "type": "integer", "description": "Total number of licensing events in the history", "example": 87 }, "files": { "type": "array", "description": "List of previously licensed stock files", "items": { "$ref": "#/components/schemas/StockFile" } } } }