> ## Documentation Index
> Fetch the complete documentation index at: https://developers.illuxi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Definition

> Returns the definition of the [product_access](/concepts/product_access) object, including its properties and their types.



## OpenAPI

````yaml GET /product_access/definition
openapi: 3.0.0
info:
  version: 2.0.0
  title: illuxiLMS API
  description: Interact with the illuxiLMS API to manage your learning content and users.
  termsOfService: https://illuxi.com/conditions-utilisation/
  contact:
    name: illuxi Team
    email: info@illuxi.com
    url: https://illuxi.com
servers:
  - url: https://{portalApiUrl}
    description: Production server (uses live data)
    variables:
      portalApiUrl:
        default: your-portal.acme.com/api-v2
        description: Your portal's API URL
security:
  - bearerAuth: []
paths:
  /product_access/definition:
    get:
      description: >-
        Returns the definition of the [product_access](/concepts/product_access)
        object, including its properties and their types.
      operationId: getProductAccessDefinition
      responses:
        '200':
          description: definition response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Definition'
        default:
          description: unexpected error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Definition:
      type: object
      required:
        - status
        - result
      properties:
        status:
          type: string
        result:
          type: object
    Error:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: integer
          format: int32
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Authentication token obtained from POST /token

````