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

42 lines
1.2 KiB
YAML

Design:
properties:
id:
description: 'The design hashed id'
type: string
example: AS3df3A
name:
description: 'The design name'
type: string
example: Beauty
design:
description: 'The design HTML'
type: string
example: '<html></html>'
is_custom:
description: 'Flag to determine if the design is a custom user design'
type: boolean
example: true
is_active:
description: 'Flag to determine if the design is available for use'
type: boolean
example: true
is_deleted:
description: 'Flag to determine if the design is deleted'
type: boolean
example: true
created_at:
description: Timestamp
type: number
format: integer
example: '134341234234'
updated_at:
description: Timestamp
type: number
format: integer
example: '134341234234'
deleted_at:
description: Timestamp
type: number
format: integer
example: '134341234234'
type: object