diff --git a/apps/api-gateway/src/verification/dto/request-proof.dto.ts b/apps/api-gateway/src/verification/dto/request-proof.dto.ts index dc765e008..3ab0d48ee 100644 --- a/apps/api-gateway/src/verification/dto/request-proof.dto.ts +++ b/apps/api-gateway/src/verification/dto/request-proof.dto.ts @@ -149,13 +149,6 @@ export class SendProofRequestPayload { @IsString({ message: 'comment must be in string' }) comment: string; - @ApiProperty() - @IsString() - @Transform(({ value }) => trim(value)) - @Transform(({ value }) => toLowerCase(value)) - @IsNotEmpty({ message: 'connectionId is required.' }) - connectionId: string; - @ApiProperty({ 'example': [ { @@ -163,7 +156,16 @@ export class SendProofRequestPayload { name: 'Verify national identity', version: '1.0', // eslint-disable-next-line camelcase - requested_attributes: {}, + requested_attributes: { + verifynameAddress: { + names: ['name', 'address'], + restrictions: [{'schema_id': 'KU583UbI4yAKfaBTSz1rqG:2:National ID:1.0.0'}] + }, + verifyBirthPlace: { + name: 'Place', + restrictions: [{'schema_id': 'KU583UbI4yAKfaBTSz1rqG:2:Birth Certificate:1.0.0'}] + } + }, // eslint-disable-next-line camelcase requested_predicates: {} }