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

     1  ---
     2  glossary_term:
     3    type: object
     4    title: glossary_term
     5    properties:
     6      id:
     7        type: string
     8      term:
     9        type: string
    10      description:
    11        type: string
    12      translatable:
    13        type: boolean
    14      case_sensitive:
    15        type: boolean
    16      translations:
    17        type: array
    18        items:
    19          "$ref": "./glossary_term_translation.yaml#/glossary_term_translation"
    20      created_at:
    21        type: string
    22        format: date-time
    23      updated_at:
    24        type: string
    25        format: date-time
    26    example:
    27      id: abcd1234cdef1234abcd1234cdef1233
    28      term: Save
    29      description: This term is used on the 'Save' buttons of our website
    30      translatable: true
    31      case_sensitive: true
    32      translations:
    33      - id: abcd1234cdef1234abcd1234cdef1234
    34        locale_code: fr-FR
    35        content: Entasser
    36        created_at: '2015-01-28T09:52:53Z'
    37        updated_at: '2015-01-28T09:52:53Z'
    38      - id: abcd1234cdef1234abcd1234cdef1235
    39        locale_code: de-DE
    40        content: Speichern
    41        created_at: '2015-01-28T09:52:53Z'
    42        updated_at: '2015-01-28T09:52:53Z'
    43      created_at: '2015-01-28T09:52:53Z'
    44      updated_at: '2015-01-28T09:52:53Z'