Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated auth api schema to include missing bcol and a few other attrs #1923

Merged
merged 1 commit into from
Mar 8, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions docs/docs/api_contract/auth-api-1.0.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -847,6 +847,23 @@ paths:
businessType: LAW
businessSize: 2-5
businessName: SAMPLE PREMIUM ACCOUNT
example2:
value:
accessType: REGULAR
created: '2021-02-27T23:33:42.039641+00:00'
createdBy: BCREG2 Chun Fourteen
id: 854
modified: '2021-02-27T23:33:42.039641+00:00'
name: SAMPLE PREMIUM ACCOUNT
branchName: SAMPLE BRANCH NAME
orgType: PREMIUM
orgStatus: ACTIVE
businessType: LAW
businessSize: 2-5
businessName: SAMPLE PREMIUM ACCOUNT
bcolAccountId: 12345
bcolAccountName: NEW BC ONLINE TECH TEAM
bcolUserId: BCOL12344
'404':
description: Not Found
content:
Expand Down Expand Up @@ -3208,6 +3225,31 @@ components:
title: The Name Schema
default: ''
pattern: ^(.*)$
branchName:
type: string
title: The Branch Name Schema
default: ''
pattern: ^(.*)$
bcolAccountId:
type: string
title: The BCOL Account Id
default: ''
pattern: ^(.*)$
bcolAccountName:
type: string
title: The BCOL Account Name Schema
default: ''
pattern: ^(.*)$
bcolUserId:
type: string
title: The BCOL User Id
default: ''
pattern: ^(.*)$
accessType:
type: string
title: The Access Type Schema
default: ''
pattern: ^(.*)$
orgType:
type: string
title: The Orgtype Schema
Expand Down