30 lines
746 B
YAML
30 lines
746 B
YAML
# -------------------------------------------------------------------
|
|
# ATTENTION: This file will not be parsed by Cheetah
|
|
# Use plain openapi/yaml syntax, no Cheetah
|
|
# escaping
|
|
# -------------------------------------------------------------------
|
|
|
|
|
|
|
|
tenant_with_saldo:
|
|
description: tenant with saldo
|
|
type: object
|
|
properties:
|
|
id:
|
|
type: integer
|
|
salutation:
|
|
type: string
|
|
nullable: true
|
|
firstname:
|
|
type: string
|
|
nullable: true
|
|
lastname:
|
|
type: string
|
|
nullable: true
|
|
address1:
|
|
type: string
|
|
nullable: true
|
|
saldo:
|
|
type: number
|
|
nullable: true
|
|
|