Files
smoa/docs/schemas/credential-payload-mobile.schema.json
defiQUG a2dc194a49 Monorepo: Gitea CI, docs, auth/sync, backend APIs, gitignore
- Add Gitea Actions workflow; point README to gitea.d-bis.org/Sankofa_Phoenix/SMOA
- Expand .gitignore for Spring H2 data, secrets, Kotlin .kotlin/, tooling
- Track docs/api/generated ReDoc bundle; refresh api docs README
- Android: network/auth/sync, UI shell, tests; backend credentials/integrity APIs
- Docs, scripts (generate-api-docs), modules and core updates

Made-with: Cursor
2026-03-23 20:19:24 -07:00

26 lines
801 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://smoa.dev/schemas/credential-payload-mobile.schema.json",
"title": "Credential sync payload — mobile / derived",
"description": "Wallet-style or derived mobile credentials. Store wallet-specific references in extensions.",
"type": "object",
"properties": {
"completeCredentialDomain": {
"type": "string",
"const": "mobile"
},
"issuingAuthority": {
"$ref": "credential-authority.schema.json#/$defs/IssuingAuthorityContext"
},
"walletCredentialRef": {
"type": "string",
"description": "Opaque reference from mobile issuance / MDM."
},
"extensions": {
"type": "object",
"additionalProperties": true
}
},
"additionalProperties": false
}