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

24 lines
408 B
JSON

{
"type": "object",
"required": ["type", "note_name", "operation"],
"properties": {
"type": {
"type": "string",
"enum": ["note_status"]
},
"note_name": {
"type": "string"
},
"status": {
"type": "string",
"enum": ["actioned", "unactione", "pending"],
"default": "pending"
},
"operation": {
"$ref": "#/definitions/operations"
},
"value": {
"type": "string"
}
}
}