Skip to content

Commit

Permalink
[MOSIP-29315] Update pms-oidc_client.sql
Browse files Browse the repository at this point in the history
Signed-off-by: Keshav Mishra <[email protected]>
  • Loading branch information
ckm007 authored Sep 6, 2023
1 parent 0d9ac33 commit cfb5769
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions db_scripts/mosip_pms/ddl/pms-oidc_client.sql
Original file line number Diff line number Diff line change
Expand Up @@ -38,28 +38,28 @@ CREATE TABLE pms.oidc_client(
CONSTRAINT uq_oidc_client_public_key UNIQUE (public_key)
);
-- ddl-end --
COMMENT ON TABLE oidc_client.id IS 'Client ID: Unique id assigned to registered OIDC client.';
COMMENT ON TABLE pms.oidc_client.id IS 'Client ID: Unique id assigned to registered OIDC client.';
-- ddl-end --
COMMENT ON COLUMN oidc_client.name IS 'Client Name: Registered name of OIDC client.';
COMMENT ON COLUMN pms.oidc_client.name IS 'Client Name: Registered name of OIDC client.';
-- ddl-end --
COMMENT ON COLUMN oidc_client.logo_uri IS 'Client Logo URL: Client logo to be displayed on IDP UI.';
COMMENT ON COLUMN pms.oidc_client.logo_uri IS 'Client Logo URL: Client logo to be displayed on IDP UI.';
-- ddl-end --
COMMENT ON COLUMN oidc_client.redirect_uris IS 'Recirect URLS: Comma separated list of client redirect URLs.';
COMMENT ON COLUMN pms.oidc_client.redirect_uris IS 'Recirect URLS: Comma separated list of client redirect URLs.';
-- ddl-end --
COMMENT ON COLUMN oidc_client.rp_id IS 'Relaying Party Id: Id of the partner id who has created this OIDC client.';
COMMENT ON COLUMN pms.oidc_client.rp_id IS 'Relaying Party Id: Id of the partner id who has created this OIDC client.';
-- ddl-end --
COMMENT ON COLUMN oidc_client.policy_id IS 'Policy Id: Id of the policy ';
COMMENT ON COLUMN pms.oidc_client.policy_id IS 'Policy Id: Id of the policy ';
-- ddl-end --
COMMENT ON COLUMN oidc_client.status IS 'Client status: Allowed values - ACTIVE / INACTIVE.';
COMMENT ON COLUMN pms.oidc_client.status IS 'Client status: Allowed values - ACTIVE / INACTIVE.';
-- ddl-end --
COMMENT ON COLUMN oidc_client.public_key IS 'Public key: JWK data.';
COMMENT ON COLUMN pms.oidc_client.public_key IS 'Public key: JWK data.';
-- ddl-end --
COMMENT ON COLUMN oidc_client.grant_types IS 'Grant Types: Allowed grant types for the client.';
COMMENT ON COLUMN pms.oidc_client.grant_types IS 'Grant Types: Allowed grant types for the client.';
-- ddl-end --
COMMENT ON COLUMN oidc_client.auth_methods IS 'Client Auth methods: Allowed token endpoint authentication methods.';
COMMENT ON COLUMN pms.oidc_client.auth_methods IS 'Client Auth methods: Allowed token endpoint authentication methods.';
-- ddl-end --
COMMENT ON COLUMN oidc_client.claims IS 'Requested Claims: claims json as per policy defined for relaying party.';
COMMENT ON COLUMN pms.oidc_client.claims IS 'Requested Claims: claims json as per policy defined for relaying party.';
-- ddl-end --
COMMENT ON COLUMN oidc_client.acr_values IS 'Allowed Authentication context References(acr) json';
COMMENT ON COLUMN pms.oidc_client.acr_values IS 'Allowed Authentication context References(acr) json';
-- ddl-end --

0 comments on commit cfb5769

Please sign in to comment.