nyanimedb/api/schemas/UserTitleMini.yaml
Iron_Felix 76df4d8592
All checks were successful
Build and Deploy Go App / build (push) Successful in 5m23s
Build and Deploy Go App / deploy (push) Successful in 28s
feat: AddUserTitle implemented
2025-11-24 09:34:05 +03:00

24 lines
384 B
YAML

type: object
required:
- user_id
- title_id
- status
properties:
user_id:
type: integer
format: int64
title_id:
type: integer
format: int64
status:
$ref: ./enums/UserTitleStatus.yaml
rate:
type: integer
format: int32
review_id:
type: integer
format: int64
ctime:
type: string
format: date-time
additionalProperties: false