passkey-authenticator-aaguids/aaguid.json.schema

27 lines
859 B
Plaintext
Raw Normal View History

2023-06-09 01:47:27 +10:00
{
"$id": "https://raw.githubusercontent.com/passkeydeveloper/passkey-authenticator-aaguids/main/aaguid.json.schema",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "AAGUID",
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"name": {
2023-06-09 01:47:27 +10:00
"type": "string"
2023-08-10 07:16:35 +10:00
},
"icon_dark": {
"type": "string",
"pattern": "^data:image\/svg\\+xml;base64,(.*)$",
"description": "SVG base64 encoded as a data URI"
},
"icon_light": {
"type": "string",
"pattern": "^data:image\/svg\\+xml;base64,(.*)$",
"description": "SVG base64 encoded as a data URI"
2023-06-09 01:47:27 +10:00
}
},
"required": [
2023-08-10 09:04:17 +10:00
"name"
2023-06-09 01:47:27 +10:00
]
}
}