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

     1  ---
     2  project:
     3    type: object
     4    title: project
     5    properties:
     6      id:
     7        type: string
     8      name:
     9        type: string
    10      slug:
    11        type: string
    12      main_format:
    13        type: string
    14      project_image_url:
    15        type: string
    16      media:
    17        type: string
    18      account:
    19        "$ref": "./account.yaml#/account"
    20      space:
    21        "$ref": "./space_short.yaml#/space_short"
    22      point_of_contact:
    23        "$ref": "./user_preview.yaml#/user_preview"
    24      created_at:
    25        type: string
    26        format: date-time
    27      updated_at:
    28        type: string
    29        format: date-time
    30    example:
    31      id: abcd1234cdef1234abcd1234cdef1234
    32      name: My Android Project
    33      slug: android_project
    34      main_format: xml
    35      project_image_url: http://assets.example.com/project.png
    36      account: account
    37      space: space
    38      created_at: '2015-01-28T09:52:53Z'
    39      updated_at: '2015-01-28T09:52:53Z'