wip initial commit
This commit is contained in:
@ -23,6 +23,10 @@ components:
|
||||
$ref: '#/components/schemas/HsOfficePersonType'
|
||||
tradeName:
|
||||
type: string
|
||||
salutation:
|
||||
type: string
|
||||
title:
|
||||
type: string
|
||||
givenName:
|
||||
type: string
|
||||
familyName:
|
||||
@ -35,6 +39,10 @@ components:
|
||||
$ref: '#/components/schemas/HsOfficePersonType'
|
||||
tradeName:
|
||||
type: string
|
||||
salutation:
|
||||
type: string
|
||||
title:
|
||||
type: string
|
||||
givenName:
|
||||
type: string
|
||||
familyName:
|
||||
@ -51,6 +59,12 @@ components:
|
||||
tradeName:
|
||||
type: string
|
||||
nullable: true
|
||||
salutation:
|
||||
type: string
|
||||
nullable: true
|
||||
title:
|
||||
type: string
|
||||
nullable: true
|
||||
givenName:
|
||||
type: string
|
||||
nullable: true
|
||||
|
@ -19,6 +19,8 @@ create table if not exists hs_office_person
|
||||
uuid uuid unique references RbacObject (uuid) initially deferred,
|
||||
personType HsOfficePersonType not null,
|
||||
tradeName varchar(96),
|
||||
salutation varchar(30),
|
||||
title varchar(20),
|
||||
givenName varchar(48),
|
||||
familyName varchar(48)
|
||||
);
|
||||
|
Reference in New Issue
Block a user