ListTableIndices
Description
description: |
List all indices created on a table. Returns information about each index
including name, columns, status, and UUID.
Request Schema
ListTableIndicesRequest:
type: object
properties:
id:
type: array
items:
type: string
description: The namespace identifier
version:
type: integer
format: int64
minimum: 0
nullable: true
description: Optional table version to list indexes from
Response Schema
ListTableIndicesResponse:
type: object
required:
- indexes
properties:
indexes:
type: array
items:
$ref: '#/components/schemas/IndexListItemResponse'
description: List of indexes on the table