WSO2 · JSON Structure

Governance Api Artifact Info Structure

Detailed information about an artifact.

Type: object Properties: 5
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

ArtifactInfo is a JSON Structure definition published by WSO2, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name type extendedType version owner

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/wso2/refs/heads/main/json-structure/governance-api-artifact-info-structure.json",
  "name": "ArtifactInfo",
  "description": "Detailed information about an artifact.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the artifact.",
      "example": "Test API"
    },
    "type": {
      "type": "string",
      "description": "Type of the artifact.",
      "enum": [
        "API"
      ],
      "example": "API"
    },
    "extendedType": {
      "type": "string",
      "description": "Extended type of the artifact.",
      "enum": [
        "REST_API",
        "ASYNC_API",
        "MCP"
      ],
      "example": "REST_API"
    },
    "version": {
      "type": "string",
      "description": "Version of the artifact.",
      "example": "1.0.0"
    },
    "owner": {
      "type": "string",
      "description": "Owner of the artifact.",
      "example": "admin"
    }
  }
}