all repos

onasty @ b3a528a

a one-time notes service

onasty/api/components/schemas/Note.yml (view raw)

Oleksandr Smirnov Oleksandr Smirnov
olexsmir@gmail.com
feat(web): add dashboard (#214)..., 8 months ago
1
type: object
2
required:
3
  - slug
4
  - content
5
  - read_at
6
  - keep_before_expiration
7
  - created_at
8
  - expires_at
9
properties:
10
  slug:
11
    type: string
12
    example: f87abf56-3f01-4709-bf54-7aa0e1a6407b
13
  content:
14
    type: string
15
    example: note content
16
  read_at:
17
    type: string
18
    format: date-time
19
    example: 2025-09-05T16:30:00Z
20
  keep_before_expiration:
21
    type: boolean
22
  created_at:
23
    type: string
24
    format: date-time
25
    example: 2025-09-05T16:30:00Z
26
  expires_at:
27
    type: string
28
    format: date-time
29
    example: 2025-09-05T16:30:00Z