initial commit

This commit is contained in:
tree🌴 2023-10-06 16:36:04 +02:00
commit fbf87873ba
5 changed files with 37 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Web3Privacy Now Data Repository
TODO

13
schema/categories.yaml Normal file
View File

@ -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

17
schema/project.yaml Normal file
View File

@ -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-]+$'

2
src/categories.yaml Normal file
View File

@ -0,0 +1,2 @@
- id: wallets
name: Wallets

View File

@ -0,0 +1,2 @@
name: Brume Wallet
categories: [ wallets ]