src/issuer/credentials/dto/schema-response.dto.ts
Properties |
$schema |
Type : string
|
Default value : 'https://json-schema.org/draft/2020-12/schema'
|
properties |
Type : Record<string | any>
|
required |
Type : string[]
|
type |
Type : string
|
Default value : 'object'
|
export class SchemaResponse {
'$schema' = 'https://json-schema.org/draft/2020-12/schema';
type = 'object';
properties: Record<string, any>;
required: string[];
}