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

     1  ---
     2  job_comment:
     3    type: object
     4    title: job_comment
     5    properties:
     6      id:
     7        type: string
     8      message:
     9        type: string
    10      job_id:
    11        type: string
    12      user:
    13        "$ref": "./user_preview.yaml#/user_preview"
    14      created_at:
    15        type: string
    16        format: date-time
    17      updated_at:
    18        type: string
    19        format: date-time
    20      mentioned_users:
    21        type: array
    22        items:
    23          "$ref": "./user_preview.yaml#/user_preview"
    24    example:
    25      id: abcd1234cdef1234abcd1234cdef1234
    26      message: Some message...
    27      job_id: abcd1234cdef1234abcd1234cdef1234
    28      user:
    29        id: abcd1234cdef1234abcd1234cdef1234
    30        username: joe.doe
    31        name: Joe Doe
    32      created_at: '2015-01-28T09:52:53Z'
    33      updated_at: '2015-01-28T09:52:53Z'