mirror of
https://github.com/web3privacy/explorer-data.git
synced 2024-10-15 12:06:26 +02:00
fix: schema addons
This commit is contained in:
parent
ca8d43186b
commit
a883f22eaa
6 changed files with 51 additions and 0 deletions
11
schema/asset_custody_type.yaml
Normal file
11
schema/asset_custody_type.yaml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
type: object
|
||||||
|
additionalProperties: false
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
- name
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: string
|
||||||
|
pattern: '^[a-z0-9-]+$'
|
||||||
|
name:
|
||||||
|
type: string
|
11
schema/project_phase.yaml
Normal file
11
schema/project_phase.yaml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
type: object
|
||||||
|
additionalProperties: false
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
- name
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: string
|
||||||
|
pattern: '^[a-z0-9-]+$'
|
||||||
|
name:
|
||||||
|
type: string
|
11
schema/sign_in_type_requirments.yaml
Normal file
11
schema/sign_in_type_requirments.yaml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
type: object
|
||||||
|
additionalProperties: false
|
||||||
|
required:
|
||||||
|
- id
|
||||||
|
- name
|
||||||
|
properties:
|
||||||
|
id:
|
||||||
|
type: string
|
||||||
|
pattern: '^[a-z0-9-]+$'
|
||||||
|
name:
|
||||||
|
type: string
|
2
src/asset_custody_type.yaml
Normal file
2
src/asset_custody_type.yaml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
- id: "non-custody"
|
||||||
|
name: "Non-custody"
|
10
src/project_phase.yaml
Normal file
10
src/project_phase.yaml
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
- id: mainnet
|
||||||
|
name: Mainnet
|
||||||
|
- id: testnet
|
||||||
|
name: Testnet
|
||||||
|
- id: alpha
|
||||||
|
name: Alpha
|
||||||
|
- id: beta
|
||||||
|
name: Beta
|
||||||
|
- id: mvp
|
||||||
|
name: MVP
|
6
src/sign_in_type_requirments.yaml
Normal file
6
src/sign_in_type_requirments.yaml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
- id: "wallet"
|
||||||
|
name: "Wallet"
|
||||||
|
- id: "email"
|
||||||
|
name: "Email"
|
||||||
|
- id: "seed"
|
||||||
|
name: "Seed"
|
Loading…
Reference in a new issue