From fbf87873ba083cab955f080a2b3b1826191b3de0 Mon Sep 17 00:00:00 2001 From: tree Date: Fri, 6 Oct 2023 16:36:04 +0200 Subject: [PATCH] initial commit --- README.md | 3 +++ schema/categories.yaml | 13 +++++++++++++ schema/project.yaml | 17 +++++++++++++++++ src/categories.yaml | 2 ++ src/projects/brume-wallet/index.yaml | 2 ++ 5 files changed, 37 insertions(+) create mode 100644 README.md create mode 100644 schema/categories.yaml create mode 100644 schema/project.yaml create mode 100644 src/categories.yaml create mode 100644 src/projects/brume-wallet/index.yaml diff --git a/README.md b/README.md new file mode 100644 index 00000000..ef5eb41a --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Web3Privacy Now Data Repository + +TODO \ No newline at end of file diff --git a/schema/categories.yaml b/schema/categories.yaml new file mode 100644 index 00000000..e08a0a7b --- /dev/null +++ b/schema/categories.yaml @@ -0,0 +1,13 @@ +type: array +required: + - id + - name +additionalProperties: false +items: + type: object + properties: + id: + type: string + pattern: '^[a-z0-9-]+$' + name: + type: string diff --git a/schema/project.yaml b/schema/project.yaml new file mode 100644 index 00000000..ce454b25 --- /dev/null +++ b/schema/project.yaml @@ -0,0 +1,17 @@ +type: object +required: + - id + - name + - categories +additionalProperties: false +properties: + id: + type: string + pattern: '^[a-z0-9-]+$' + name: + type: string + categories: + type: array + items: + type: string + pattern: '^[a-z0-9-]+$' diff --git a/src/categories.yaml b/src/categories.yaml new file mode 100644 index 00000000..c7b3769d --- /dev/null +++ b/src/categories.yaml @@ -0,0 +1,2 @@ +- id: wallets + name: Wallets \ No newline at end of file diff --git a/src/projects/brume-wallet/index.yaml b/src/projects/brume-wallet/index.yaml new file mode 100644 index 00000000..a28c5be3 --- /dev/null +++ b/src/projects/brume-wallet/index.yaml @@ -0,0 +1,2 @@ +name: Brume Wallet +categories: [ wallets ] \ No newline at end of file