github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/schemas/key_link.yaml (about)

     1  key_link:
     2    type: object
     3    properties:
     4      created_at:
     5        type: string
     6        format: date-time
     7        description: The timestamp when the link was created.
     8      updated_at:
     9        type: string
    10        format: date-time
    11        description: The timestamp when the link was last updated.
    12      created_by:
    13        $ref: "./user_preview.yaml#/user_preview"
    14        description: The user who created the link.
    15      updated_by:
    16        $ref: "./user_preview.yaml#/user_preview"
    17        description: The user who last updated the link.
    18      account:
    19        $ref: "./account.yaml#/account"
    20        description: The account associated with the link.
    21      parent:
    22        $ref: "./key_preview.yaml#/key_preview"
    23        description: The parent translation key in the link.
    24      children:
    25        type: array
    26        items:
    27          $ref: "./key_preview.yaml#/key_preview"
    28        description: The child translation keys linked to the parent.