DCQL query: Payment Card Credential (TS12)
When to use
Use this skill when you ask a holder to confirm a payment card. The Payment Card Credential is one of the three TS12 credentials of a Strong Customer Authentication flow. It names the card that pays.
The query asks for three claims:
pan_last_four- the last four digits of the primary account number. The credential does not disclose the full number.scheme- the card scheme.scheme_logo- the logo of the scheme, for the confirmation screen.
These three claims are enough to show a card in a user interface. The holder sees which card the payment uses, and the verifier never holds the full number.
The other two TS12 credentials are the Payment Account Credential, in
igrantio-dcql-query-sca-payment-account, and the Payment User Credential,
in igrantio-dcql-query-sca-payment-user.
Registry facts
| Fact | Value |
|---|---|
| Title | Payment Card Credential (TS12) |
| Purpose | Payment Card Credential (TS12) |
| Registry version | 2025.7.1 |
| Formats | dc+sd-jwt |
dc+sd-jwt vct |
{baseUrl}/service/vct-metadata/card |
| SCA credential | yes (isScaCredential: true) |
The registry gives no mso_mdoc file and no jwt_vc_json file for this
template. The Payment Card Credential is an SD-JWT VC only.
{baseUrl} is a placeholder. The vct is not a fixed string. It is the
VCT metadata URL of the issuer. Replace {baseUrl} with the base URL of the
service that issues the credential, for example
https://demo-api.igrant.io/service/vct-metadata/card. Do not send the
literal text {baseUrl} in a query.
The metadata flag isScaCredential: true tells the platform that this
template belongs to an SCA flow, and that the request needs transaction data.
Claims
Format dc+sd-jwt
The registry file is 2025.7.1/dc+sd-jwt.schema.json.
{
"claims": [
{
"path": [
"pan_last_four"
]
},
{
"path": [
"scheme"
]
},
{
"path": [
"scheme_logo"
]
}
]
}
How to read the path arrays
For dc+sd-jwt, the path walks the JSON payload of the credential. Every
claim here is a top-level claim, so every path holds one element. There is no
nesting.
This template has no mso_mdoc file. In an mDoc query the first element of
the path would be the namespace, but that rule does not apply to this
template.
Use with the iGrant.io API
An SCA query needs one more field than a plain query: the presentation definition must name a transaction data template.
Step 1. Create the presentation definition with
POST /v2/config/digital-wallet/openid/sdjwt/presentation-definition.
Set version to version_01. Set transactionDataDefinitionType. Put one
entry in dcqlQuery.credentials with the dc+sd-jwt format and the
vct_values meta.
{
"label": "Confirm the card payment",
"version": "version_01",
"responseType": "vp_token",
"responseMode": "direct_post",
"transactionDataDefinitionType": "payment_data",
"dcqlQuery": {
"credentials": [
{
"id": "payment-card",
"format": "dc+sd-jwt",
"meta": {
"vct_values": [
"https://demo-api.igrant.io/service/vct-metadata/card"
]
},
"claims": [
{ "path": ["pan_last_four"] },
{ "path": ["scheme"] },
{ "path": ["scheme_logo"] }
]
}
]
}
}
dc+sd-jwt takes vct_values or type_values in meta. It refuses
doctype_value, because that key belongs to mso_mdoc.
To accept the cards of one scheme only, add a values array to the scheme
claim. The wallet then answers only with a card of a listed scheme.
Pick the transaction data type that matches your action. The field is
mandatory when the DCQL query asks for an SCA attestation. The API offers
payment_data, payment, login_risk_transaction,
login_risk_transaction_non_ts12, account_access, emandate,
data_agreement_record, data_disclosure_agreement_record and qes_data.
A card payment uses a payment type. A login step uses a login risk type.
Read the JSON Schema of each type with
GET /v2/config/digital-wallet/openid/sdjwt/transaction-data-definitions
and take the one that fits, because the schema decides which fields the
request must carry.
Step 2. Send the request with the V3 send operation,
POST /v3/config/digital-wallet/openid/sdjwt/verification/send. Send the
presentationDefinitionId, and send transactionData that follows the JSON
Schema of the chosen type. The amount, the payee and the currency of the
payment travel there, not in the DCQL query. The server answers HTTP 400 when
the presentation definition sets a transactionDataDefinitionType and the
request carries no transactionData, and also in the opposite case.
Step 3. Read vpTokenQrCode for the deep link and
presentationExchangeId for the correlation id. The finished record holds
transactionData and transactionDataBase64.
label must hold 3 to 100 characters. The server refuses the labels that
extensions reserve.
For the full operation reference, the transaction data rules and the response
shape, read the igrantio-api-verifier skill.
Source is the registry
This skill mirrors the iGrant.io verifiable data registry. If this skill and the registry file disagree, the registry wins. Check the source before you rely on a claim path:
- Directory: https://github.com/decentralised-dataexchange/verifiable-data-registry/tree/main/presentationDefinitions/dcqlQuery/scaPaymentCard
- Raw file:
https://raw.githubusercontent.com/decentralised-dataexchange/verifiable-data-registry/main/presentationDefinitions/dcqlQuery/scaPaymentCard/2025.7.1/dc+sd-jwt.schema.json
A newer version directory can appear next to 2025.7.1. Always take the
latest one.