| 1234567891011121314151617181920212223242526272829 |
- type: object
- required:
- - id
- - uuid_key
- - email
- - name
- - created_at
- properties:
- id:
- type: string
- format: uuid
- description: UUID v7 primary key.
- example: 0191a23b-dead-7000-beef-000000000001
- uuid_key:
- type: string
- format: uuid
- description: UUID v4 used as a secondary token in the JWT.
- example: 550e8400-e29b-41d4-a716-446655440000
- email:
- type: string
- format: email
- example: lee@example.com
- name:
- type: string
- example: Lee
- created_at:
- type: string
- format: date-time
- example: '2026-01-01T00:00:00Z'
|