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

     1  ---
     2  translation_key:
     3    type: object
     4    title: translation_key
     5    properties:
     6      id:
     7        type: string
     8      name:
     9        type: string
    10      description:
    11        type: string
    12      name_hash:
    13        type: string
    14      plural:
    15        type: boolean
    16      tags:
    17        type: array
    18        items:
    19          type: string
    20      data_type:
    21        type: string
    22      created_at:
    23        type: string
    24        format: date-time
    25      updated_at:
    26        type: string
    27        format: date-time
    28    example:
    29      id: abcd1234cdef1234abcd1234cdef1234
    30      name: home.index.headline
    31      description: My description for this key...
    32      name_hash: 1b31d2580ce324f246f66b3be00ed399
    33      plural: false
    34      tags:
    35      - awesome-feature
    36      - needs-proofreading
    37      data_type: string
    38      created_at: '2015-01-28T09:52:53Z'
    39      updated_at: '2015-01-28T09:52:53Z'