fix: schema addons

This commit is contained in:
DomWane 2024-09-19 16:44:42 +02:00
parent ca8d43186b
commit a883f22eaa
6 changed files with 51 additions and 0 deletions

View 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
View file

@ -0,0 +1,11 @@
type: object
additionalProperties: false
required:
- id
- name
properties:
id:
type: string
pattern: '^[a-z0-9-]+$'
name:
type: string

View file

@ -0,0 +1,11 @@
type: object
additionalProperties: false
required:
- id
- name
properties:
id:
type: string
pattern: '^[a-z0-9-]+$'
name:
type: string

View file

@ -0,0 +1,2 @@
- id: "non-custody"
name: "Non-custody"

10
src/project_phase.yaml Normal file
View 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

View file

@ -0,0 +1,6 @@
- id: "wallet"
name: "Wallet"
- id: "email"
name: "Email"
- id: "seed"
name: "Seed"