Type alias SimpleProperty

SimpleProperty: {
    description?: string;
    format?: string;
    title: string;
    type: "string" | "integer";
}

Represents simple property schema for string or integer credential attributes.

Type declaration

  • Optional description?: string

    Optional description of the property.

  • Optional format?: string

    Optional format specification for the property.

  • title: string

    The title of the property.

  • type: "string" | "integer"

    The type of the property value.

Generated using TypeDoc