18 lines
287 B
JSON
18 lines
287 B
JSON
|
{
|
||
|
"type": "object",
|
||
|
"required": ["type", "plan"],
|
||
|
"properties": {
|
||
|
"type": {
|
||
|
"type": "string",
|
||
|
"enum": ["is_woo_express"]
|
||
|
},
|
||
|
"plan": {
|
||
|
"type": "string",
|
||
|
"enum": ["trial", "essential", "performance"]
|
||
|
},
|
||
|
"value": {
|
||
|
"type": "boolean",
|
||
|
"default": false
|
||
|
}
|
||
|
}
|
||
|
}
|