From b30785f4c9f2b3460a2b39a562ffa0e63d499c7c Mon Sep 17 00:00:00 2001 From: Tim Cappalli Date: Thu, 8 Jun 2023 15:47:27 +0000 Subject: [PATCH] add JSON schema --- aaguid.json.schema | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 aaguid.json.schema diff --git a/aaguid.json.schema b/aaguid.json.schema new file mode 100644 index 0000000..2f16f28 --- /dev/null +++ b/aaguid.json.schema @@ -0,0 +1,25 @@ +{ + "$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": { + "platform": { + "type": "string" + }, + "friendlyName": { + "type": "string" + }, + "verboseName": { + "type": "string" + } + }, + "required": [ + "platform", + "friendlyName", + "verboseName" + ] + } +} \ No newline at end of file