Files
smoa/docs/schemas/credential-payload-nfc_access.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

28 lines
816 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://smoa.dev/schemas/credential-payload-nfc_access.schema.json",
"title": "Credential sync payload — NFC / physical access",
"description": "Badge, PACS, or NFC access credential metadata. Payload often includes facility codes or QR bitmap refs in extensions.",
"type": "object",
"properties": {
"completeCredentialDomain": {
"type": "string",
"const": "nfc_access"
},
"issuingAuthority": {
"$ref": "credential-authority.schema.json#/$defs/IssuingAuthorityContext"
},
"facilityCode": {
"type": "string"
},
"badgeNumber": {
"type": "string"
},
"extensions": {
"type": "object",
"additionalProperties": true
}
},
"additionalProperties": false
}