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

     1  ---
     2  translation_order:
     3    type: object
     4    title: translation_order
     5    properties:
     6      id:
     7        type: string
     8      name:
     9        type: string
    10      lsp:
    11        type: string
    12      amount_in_cents:
    13        type: integer
    14      currency:
    15        type: string
    16      message:
    17        type: string
    18      state:
    19        type: string
    20      translation_type:
    21        type: string
    22      progress_percent:
    23        type: integer
    24      source_locale:
    25        "$ref": "./locale_preview.yaml#/locale_preview"
    26      target_locales:
    27        type: array
    28        items:
    29          "$ref": "./locale_preview.yaml#/locale_preview"
    30      tag:
    31        type: string
    32      styleguide:
    33        "$ref": "./styleguide_preview.yaml#/styleguide_preview"
    34      unverify_translations_upon_delivery:
    35        type: boolean
    36      quality:
    37        type: boolean
    38      priority:
    39        type: boolean
    40      created_at:
    41        type: string
    42        format: date-time
    43      updated_at:
    44        type: string
    45        format: date-time
    46    example:
    47      id: 30AB4884
    48      lsp: gengo
    49      amount_in_cents: 1152
    50      currency: usd
    51      message: Please make everything sound really nice :)
    52      state: confirmed
    53      translation_type: pro
    54      progress_percent: 50
    55      source_locale:
    56        id: abcd1234cdef1234abcd1234cdef1234
    57        name: en
    58        code: en-GB
    59      target_locales:
    60      - id: abcd1234cdef1234abcd1234cdef1234
    61        name: de
    62        code: de-DE
    63      - id: abcd1234cdef1234abcd1234cdef1234
    64        name: fr
    65        code: fr-FR
    66      tag: latest-upload
    67      styleguide:
    68        id: abcd1234cdef1234abcd1234cdef1234
    69        title: My Styleguide
    70      unverify_translations_upon_delivery: true
    71      quality: true
    72      priority: true
    73      created_at: '2015-01-28T09:52:53Z'
    74      updated_at: '2015-01-28T09:52:53Z'