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

# List edge table lineages for a project



## OpenAPI

````yaml /api-reference/ilyama.v1.json get /projects/{project_id}/edge/lineages
openapi: 3.1.0
info:
  description: >
    Generation-ready starter contract for ilyama's HTTP API.

    This is intentionally scoped to stable routes already mounted in
    services/apis

    so frontend clients can begin integrating against the rewrite immediately.
  title: ilyama Core API
  version: 0.1.0
servers:
  - url: /core/api/v1
security:
  - bearerAuth: []
tags:
  - name: Certificates (HTTP)
  - name: Device JITR
  - name: Device RPC
  - name: Devices
  - name: Edge replication
  - name: Fleets
  - name: Integrations
  - name: MDM
  - name: Notification Event Registry
  - name: Notifications
  - name: OTA
  - name: Observability & data
  - name: Organizations
  - name: Project settings
  - name: Projects
  - name: Projects — Email Templates
  - name: Projects — Notification Subscriptions
  - name: Projects — Status
  - name: System
  - name: Tickets & workflows
  - name: Webhooks
paths:
  /projects/{project_id}/edge/lineages:
    get:
      tags:
        - Edge replication
      summary: List edge table lineages for a project
      operationId: listEdgeTableLineages
      parameters:
        - in: path
          name: project_id
          required: true
          schema:
            format: uuid
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/SuccessEnvelope'
                  - properties:
                      data:
                        items:
                          $ref: '#/components/schemas/EdgeTableLineage'
                        type: array
                    type: object
          description: Lineages loaded
      security:
        - bearerAuth: []
          orgIdHeader: []
components:
  schemas:
    SuccessEnvelope:
      description: >
        Preferred shape for successful JSON responses is `{ ok, data, meta }`
        with list metadata

        (e.g. pagination totals) in top-level `meta`, not nested under `data`.
      properties:
        data:
          description: Response payload; may be null for no-content successes.
          nullable: true
        meta:
          description: Top-level metadata (e.g. pagination); null when unused.
          nullable: true
        ok:
          enum:
            - 1
          type: integer
      required:
        - ok
        - data
        - meta
      type: object
    EdgeTableLineage:
      properties:
        created_at:
          format: date-time
          type: string
        device_id:
          format: uuid
          type: string
        fleet_id:
          format: uuid
          type: string
        id:
          format: uuid
          type: string
        materialization_failure_count:
          description: Consecutive permanent materialization failures; present when > 0.
          type: integer
        materialization_last_error:
          description: Normalized last permanent materialization error; present when set.
          type: string
        org_id:
          format: uuid
          type: string
        project_id:
          format: uuid
          type: string
        source_table:
          type: string
        status:
          type: string
        updated_at:
          format: date-time
          type: string
      required:
        - id
        - org_id
        - project_id
        - fleet_id
        - device_id
        - source_table
        - status
        - created_at
        - updated_at
      type: object
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http
    orgIdHeader:
      in: header
      name: ORG-ID
      type: apiKey

````