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

     1  ---
     2  release_preview:
     3    type: object
     4    title: release_preview
     5    properties:
     6      id:
     7        type: string
     8      version:
     9        type: integer
    10      app_min_version:
    11        type: string
    12      app_max_version:
    13        type: string
    14      description:
    15        type: string
    16      platforms:
    17        type: array
    18        items:
    19          type: string
    20      environments:
    21        type: array
    22        items:
    23          type: string
    24      locale_codes:
    25        type: array
    26        items:
    27          type: string
    28      tags:
    29        type: array
    30        items:
    31          type: string
    32      project:
    33        "$ref": "./project_short.yaml#/project_short"
    34      created_at:
    35        type: string
    36        format: date-time
    37      updated_at:
    38        type: string
    39        format: date-time
    40    example:
    41      id: abcd1234cdef1234abcd1234cdef1234
    42      version: 1
    43      project:
    44        id: abcd1234cdef1234abcd1234cdef1234
    45        name: My Android Project
    46        main_format: xml
    47        created_at: "2015-01-28T09:52:53Z"
    48        updated_at: "2015-01-28T09:52:53Z"
    49      platforms:
    50        - android
    51      environments:
    52        - development
    53      locale_codes:
    54        - de
    55        - en
    56      tags:
    57        - android
    58        - feature1
    59      created_at: "2015-01-28T09:52:53Z"
    60      updated_at: "2015-01-28T09:52:53Z"