lib/swagger/defs/tenant.yaml

63 lines
1.5 KiB
YAML
Raw Normal View History

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