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

# Push Link Entitlement

> Reference for merged 0.6.0 source. The latest verified binary release is 0.5.5; use your Engine’s /api/openapi.json for its installed contract.



## OpenAPI

````yaml /engine/openapi.json put /api/link/entitlement
openapi: 3.1.0
info:
  title: nerditd
  version: 0.6.0
  description: >-
    Current source interface (0.6.0); verify your installed Engine version. This
    is not a claim that 0.6.0 is released.
servers:
  - url: http://127.0.0.1:9321
    description: Default local Engine; use your configured endpoint.
security: []
paths:
  /api/link/entitlement:
    put:
      tags:
        - Link
      summary: Push Link Entitlement
      description: >-
        Reference for merged 0.6.0 source. The latest verified binary release is
        0.5.5; use your Engine’s /api/openapi.json for its installed contract.
      operationId: push_link_entitlement
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EntitlementPushRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntitlementPushView'
          description: HTTP 200 response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: HTTP 422 response
components:
  schemas:
    EntitlementPushRequest:
      properties:
        hosted_public_entitled:
          type: boolean
          title: Hosted Public Entitled
        issued_at:
          type: string
          format: date-time
          title: Issued At
      additionalProperties: false
      type: object
      required:
        - hosted_public_entitled
        - issued_at
      title: EntitlementPushRequest
    EntitlementPushView:
      properties:
        hosted_public_entitled:
          type: boolean
          title: Hosted Public Entitled
        received_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Received At
        expires_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Expires At
        applied:
          type: boolean
          title: Applied
        changed:
          type: boolean
          title: Changed
      type: object
      required:
        - hosted_public_entitled
        - received_at
        - expires_at
        - applied
        - changed
      title: EntitlementPushView
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````