lib/swagger/defs/tenant.yaml

50 lines
1.2 KiB
YAML

Tenant:
description: Account Tenant
properties:
AccountID:
description: The Account that owns this Tenant
type: string
Active:
description: Is this Tenant currently active?
type: boolean
CreatedByID:
description: Created By
type: string
CreatedDate:
description: Created Date
type: string
Databases:
items:
$ref: "./database.yaml#/Database"
type: array
ID:
description: Record Id
type: string
LastModifiedByID:
description: Last Modified By
type: string
LastModifiedDate:
description: Last Modifed Date
type: string
Roles:
items:
$ref: "./role.yaml#/Role"
type: array
Status:
description: The current status of this Tenant
type: string
TenantName:
description: Name of the Tenant Resource
type: string
# TenantUsers:
# items:
# $ref: "./tenant-user.yaml#/TenantUser"
# type: array
Type:
description: Type of tenant
type: string
Version:
description: The version number of the Tenant Onboarding system used to create this tenant
type: string
type: object