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

     1  ---
     2  user:
     3    type: object
     4    title: user
     5    properties:
     6      id:
     7        type: string
     8      username:
     9        type: string
    10      name:
    11        type: string
    12      position:
    13        type: string
    14      created_at:
    15        type: string
    16        format: date-time
    17      updated_at:
    18        type: string
    19        format: date-time
    20    example:
    21      id: abcd1234cdef1234abcd1234cdef1234
    22      username: joe.doe
    23      name: Joe Doe
    24      position: Lead Developer
    25      created_at: '2015-01-28T09:52:53Z'
    26      updated_at: '2015-01-28T09:52:53Z'