Variable SignedTokenEncodedSchema

SignedTokenEncodedSchema: {
    $id: string;
    $schema: string;
    additionalProperties: boolean;
    properties: {
        payload: {
            type: string;
        };
        signatures: {
            items: {
                additionalProperties: boolean;
                properties: {
                    protected: {
                        type: string;
                    };
                    signature: {
                        type: string;
                    };
                };
                required: string[];
                type: string;
            };
            type: string;
        };
    };
    required: string[];
    type: string;
}

Type declaration

  • $id: string
  • $schema: string
  • additionalProperties: boolean
  • properties: {
        payload: {
            type: string;
        };
        signatures: {
            items: {
                additionalProperties: boolean;
                properties: {
                    protected: {
                        type: string;
                    };
                    signature: {
                        type: string;
                    };
                };
                required: string[];
                type: string;
            };
            type: string;
        };
    }
    • payload: {
          type: string;
      }
      • type: string
    • signatures: {
          items: {
              additionalProperties: boolean;
              properties: {
                  protected: {
                      type: string;
                  };
                  signature: {
                      type: string;
                  };
              };
              required: string[];
              type: string;
          };
          type: string;
      }
      • items: {
            additionalProperties: boolean;
            properties: {
                protected: {
                    type: string;
                };
                signature: {
                    type: string;
                };
            };
            required: string[];
            type: string;
        }
        • additionalProperties: boolean
        • properties: {
              protected: {
                  type: string;
              };
              signature: {
                  type: string;
              };
          }
          • protected: {
                type: string;
            }
            • type: string
          • signature: {
                type: string;
            }
            • type: string
        • required: string[]
        • type: string
      • type: string
  • required: string[]
  • type: string

Generated using TypeDoc