MCPcopy
hub / github.com/authts/oidc-client-ts / OidcAddressClaim

Interface OidcAddressClaim

src/Claims.ts:13–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11 * @see https://openid.net/specs/openid-connect-core-1_0.html#AddressClaim
12 */
13export interface OidcAddressClaim {
14 /** Full mailing address, formatted for display or use on a mailing label. This field MAY contain multiple lines, separated by newlines. Newlines can be represented either as a carriage return/line feed pair ("\\r\\n") or as a single line feed character ("\\n"). */
15 formatted?: string;
16 /** Full street address component, which MAY include house number, street name, Post Office Box, and multi-line extended street address information. This field MAY contain multiple lines, separated by newlines. Newlines can be represented either as a carriage return/line feed pair ("\\r\\n") or as a single line feed character ("\\n"). */
17 street_address?: string;
18 /** City or locality component. */
19 locality?: string;
20 /** State, province, prefecture, or region component. */
21 region?: string;
22 /** Zip code or postal code component. */
23 postal_code?: string;
24 /** Country name component. */
25 country?: string;
26}
27
28/**
29 * Standard OpenID Connect claims.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…