mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
initial commit
This commit is contained in:
commit
fbf87873ba
5 changed files with 37 additions and 0 deletions
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Web3Privacy Now Data Repository
|
||||||
|
|
||||||
|
TODO
|
13
schema/categories.yaml
Normal file
13
schema/categories.yaml
Normal 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
17
schema/project.yaml
Normal 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
2
src/categories.yaml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
- id: wallets
|
||||||
|
name: Wallets
|
2
src/projects/brume-wallet/index.yaml
Normal file
2
src/projects/brume-wallet/index.yaml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
name: Brume Wallet
|
||||||
|
categories: [ wallets ]
|
Loading…
Reference in a new issue