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

     1  ---
     2  distribution_preview:
     3    type: object
     4    title: distribution_preview
     5    properties:
     6      id:
     7        type: string
     8      name:
     9        type: string
    10      project:
    11        "$ref": "./project_short.yaml#/project_short"
    12      platforms:
    13        type: array
    14        items:
    15          type: string
    16      release_count:
    17        type: integer
    18      created_at:
    19        type: string
    20        format: date-time
    21      deleted_at:
    22        type: string
    23        format: date-time
    24    example:
    25      id: abcd1234cdef1234abcd1234cdef1234
    26      name: Android Distribution
    27      project:
    28        id: abcd1234cdef1234abcd1234cdef1234
    29        name: My Android Project
    30        main_format: xml
    31        created_at: '2015-01-28T09:52:53Z'
    32        updated_at: '2015-01-28T09:52:53Z'
    33      platforms:
    34      - android
    35      release_count: 10
    36      created_at: '2015-01-28T09:52:53Z'
    37      updated_at: '2015-01-28T09:52:53Z'