1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/openapi/components/schemas/expense_category.yaml
2023-03-19 10:39:21 +11:00

27 lines
788 B
YAML

ExpenseCategory:
properties:
id:
description: 'The expense hashed id'
type: string
example: Opnel5aKBz
name:
description: 'The expense category name'
type: string
example: Accounting
user_id:
description: 'The user hashed id'
type: string
example: XS987sD
is_deleted:
description: 'Flag determining whether the expense category has been deleted'
type: boolean
example: true
updated_at:
description: 'The updated at timestamp'
type: integer
example: '2'
created_at:
description: 'The created at timestamp'
type: integer
example: '2'
type: object