LifecycleHistoryItem schema from WSO2 API Manager
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-schema/publisher-api-lifecycle-history-item-schema.json", "title": "Lifecycle history item", "description": "LifecycleHistoryItem schema from WSO2 API Manager", "type": "object", "properties": { "previousState": { "type": "string", "example": "Created" }, "postState": { "type": "string", "example": "Published" }, "user": { "type": "string", "example": "admin" }, "updatedTime": { "type": "string", "format": "dateTime", "example": "2019-02-31T23:59:60Z" } } }