forked from passkeydeveloper/passkey-authenticator-aaguids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaaguid.json.schema
27 lines (27 loc) · 859 Bytes
/
aaguid.json.schema
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"$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": {
"type": "string"
},
"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"
}
},
"required": [
"name"
]
}
}