WSO2 · JSON Structure

Governance Api Artifact Compliance Details Structure

Provides compliance details of an artifact.

Type: object Properties: 4
API ManagementGatewaysOpen SourceAPI LifecycleGraphQLSOAPREST

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

Properties

id status info governedPolicies

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-compliance-details-structure.json",
  "name": "ArtifactComplianceDetails",
  "description": "Provides compliance details of an artifact.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "UUID of the artifact.",
      "example": "123e4567-e89b-12d3-a456-426614174000"
    },
    "status": {
      "type": "string",
      "description": "Status of the artifact's governance compliance.",
      "enum": [
        "COMPLIANT",
        "NON-COMPLIANT",
        "NOT-APPLICABLE",
        "PENDING"
      ],
      "example": "COMPLIANT"
    },
    "info": {
      "$ref": "#/components/schemas/ArtifactInfo"
    },
    "governedPolicies": {
      "type": "array",
      "description": "List of policies under which the artifact was governed.",
      "items": {
        "$ref": "#/components/schemas/PolicyAdherenceWithRulesets"
      }
    }
  }
}