woocommerce/packages/php/remote-specs-validation/schemas/shared/rules/stored_state.json

19 lines
310 B
JSON

{
"type": "object",
"required": ["type", "index", "operation", "value"],
"properties": {
"type": {
"type": "string",
"enum": ["stored_state"]
},
"index": {
"type": "string"
},
"operation": {
"$ref": "#/definitions/operations"
},
"value": {
"type": ["string", "boolean"]
}
}
}