> ## Documentation Index
> Fetch the complete documentation index at: https://docs.open-cluster.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get capability metadata



## OpenAPI

````yaml /api/openapi.yaml get /api/v1/meta
openapi: 3.1.0
info:
  title: OpenCluster Control Plane API
  version: 0.1.0
  description: HTTP contract for the OpenCluster product API and inbound webhook endpoints.
  license:
    name: Apache-2.0
servers:
  - url: http://localhost:8080
    description: Local self-hosted deployment
security: []
tags:
  - name: Authentication
  - name: Organizations
  - name: Members
  - name: Sessions
  - name: Policy
  - name: Audit
  - name: Integration Types
  - name: Integrations
  - name: Relays
  - name: Incidents
  - name: Investigations
  - name: Conversations
  - name: Postmortems
  - name: Webhook Deliveries
  - name: Webhook Intake
  - name: Metadata
paths:
  /api/v1/meta:
    get:
      tags:
        - Metadata
      summary: Get capability metadata
      operationId: getCapabilityMetadata
      responses:
        '200':
          description: Edition-neutral capabilities supported by this deployment.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CapabilityMetadataList'
        default:
          $ref: '#/components/responses/ErrorResponse'
      security:
        - SessionCookie: []
components:
  schemas:
    CapabilityMetadataList:
      type: object
      additionalProperties: false
      required:
        - capabilities
      properties:
        capabilities:
          type: array
          items:
            $ref: '#/components/schemas/CapabilityMetadata'
    CapabilityMetadata:
      type: object
      additionalProperties: false
      required:
        - key
        - enabled
        - availability
      properties:
        key:
          type: string
          pattern: ^[a-z][a-z0-9_]{0,63}$
        enabled:
          type: boolean
        availability:
          type: string
          enum:
            - available
            - unavailable
            - degraded
        reason:
          oneOf:
            - type: string
              maxLength: 1024
            - type: 'null'
    Error:
      type: object
      additionalProperties: false
      required:
        - error
      properties:
        error:
          type: string
          minLength: 1
          maxLength: 1024
          example: the selected Organization is not available to this caller
        reason:
          type: string
          enum:
            - credential_rejected
            - session_expired
            - session_revoked
        requires:
          type: string
          minLength: 1
          maxLength: 128
  responses:
    ErrorResponse:
      description: The operation did not complete.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    SessionCookie:
      type: apiKey
      in: cookie
      name: __Host-oc_session

````