UNPKG

@sphereon/pex-models

Version:

Presentation Exchange v1 and v2 typescript models

13 lines (12 loc) 338 B
import { Issuance } from './issuance'; import { Schema } from './schema'; import { ConstraintsV1 } from './constraintsV1'; export interface InputDescriptorV1 { id: string; name?: string; purpose?: string; group?: Array<string>; schema: Array<Schema>; issuance?: Array<Issuance>; constraints?: ConstraintsV1; }