Raw schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Website name"
},
"version": {
"type": "string",
"enum": [
"Free",
"Basic",
"Professional",
"Business"
],
"description": "Free: free version, no KYC and no credit card required. €0 / month\nBasic: perfect for creating a showcase website. €7.95 / month\nProfessional: budget friendly shop, for professional online selling. €24.95 / month\nBusiness: complete package with all features included. €49.95 / month\nDefaults to \"Free\"."
},
"lang": {
"type": "string",
"description": "User language in ISO 639-1. Choose from: cs, da, de, el, en, es, fi, fr, it, ja, ko, nl, no, pl, pt, ro, ru, sv, tr, zh (traditional Chinese). Optional, defaults to \"en\"."
},
"currency": {
"type": "string",
"description": "User currency in ISO 4217. Choose from: BTC, EUR, GBP, USD, ... Optional, defaults to \"EUR\"."
},
"email": {
"type": "string",
"format": "email",
"description": "Users' email address. Optional."
},
"domain": {
"type": "string",
"description": "Desired domain name in the form of \"example.com\". Valid TLDs are: .ar, .at, .be, .biz, .ch, .chat, .cn, .co.uk, .com, .com.ar, .com.mx, .com.tr, .cy, .cz, .de, .dk, .es, .eu, .fi, .fr, .gr, .hu, .info, .it, .jp, .kr, .kz, .lc, .lu, .me, .ms, .mx, .name, .net, .nl, .no, .nu, .org, .pl, .pt, .ro, .ru, .shop, .se, .tienda, .tv, .tw, .com.tw, .us, .wiki. Optional."
},
"webshop": {
"type": "boolean",
"description": "True: website will include a webshop\nFalse: shopping basket will be disabled.\nDefaults to \"True\"."
},
"style": {
"type": "string",
"enum": [
"Minimal",
"Bold",
"Corporate",
"Playful"
],
"description": "Overall visual style. Defaults to \"Playful\"."
},
"info": {
"type": "string",
"description": "Additional information about the user, the users' business and/or the users' desired website. Optional."
}
},
"required": [
"name"
]
}