- 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
28 lines
816 B
JSON
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
|
|
}
|