WSO2 · Schema

Lifecycle history item

LifecycleHistoryItem schema from WSO2 API Manager

API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

Properties

Name Type Description
previousState string
postState string
user string
updatedTime string
View JSON Schema on GitHub

JSON Schema

publisher-api-lifecycle-history-item-schema.json Raw ↑
{
  "$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"
    }
  }
}