Orbital · Capability

Orbital Schema Management API — Types

Orbital Schema Management API — Types. 2 operations. Lead operation: Orbital List registered types. Self-contained Naftiko capability covering one Orbital business surface.

Run with Naftiko OrbitalTypes

What You Can Do

GET
Listtypes — Orbital List registered types
/v1/api/types
GET
Gettype — Orbital Get type details
/v1/api/types/{qualifiedname}

MCP Tools

orbital-list-registered-types

Orbital List registered types

read-only idempotent
orbital-get-type-details

Orbital Get type details

read-only idempotent

Capability Spec

schema-management-types.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Orbital Schema Management API — Types
  description: 'Orbital Schema Management API — Types. 2 operations. Lead operation: Orbital List registered types. Self-contained
    Naftiko capability covering one Orbital business surface.'
  tags:
  - Orbital
  - Types
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ORBITAL_API_KEY: ORBITAL_API_KEY
capability:
  consumes:
  - type: http
    namespace: schema-management-types
    baseUri: https://localhost:9022
    description: Orbital Schema Management API — Types business capability. Self-contained, no shared references.
    resources:
    - name: api-types
      path: /api/types
      operations:
      - name: listtypes
        method: GET
        description: Orbital List registered types
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-types-qualifiedName
      path: /api/types/{qualifiedName}
      operations:
      - name: gettype
        method: GET
        description: Orbital Get type details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: qualifiedName
          in: path
          type: string
          description: Fully qualified name of the type.
          required: true
  exposes:
  - type: rest
    namespace: schema-management-types-rest
    port: 8080
    description: REST adapter for Orbital Schema Management API — Types. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/types
      name: api-types
      description: REST surface for api-types.
      operations:
      - method: GET
        name: listtypes
        description: Orbital List registered types
        call: schema-management-types.listtypes
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/types/{qualifiedname}
      name: api-types-qualifiedname
      description: REST surface for api-types-qualifiedName.
      operations:
      - method: GET
        name: gettype
        description: Orbital Get type details
        call: schema-management-types.gettype
        with:
          qualifiedName: rest.qualifiedName
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: schema-management-types-mcp
    port: 9090
    transport: http
    description: MCP adapter for Orbital Schema Management API — Types. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: orbital-list-registered-types
      description: Orbital List registered types
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: schema-management-types.listtypes
      outputParameters:
      - type: object
        mapping: $.
    - name: orbital-get-type-details
      description: Orbital Get type details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: schema-management-types.gettype
      with:
        qualifiedName: tools.qualifiedName
      outputParameters:
      - type: object
        mapping: $.