{
"pos_id": 10, // ID of the existing rule to delete
"type": 1, // 0 - Basic information, 1 - Extended attributes
"pos": "orderCode", // Content to be recognized (e.g., 'orderCode')
"prefix_reg": "O_", // Prefix for the recognized content (not used in deletion but shown in the original rule)
"content_reg": "\\d{8}-\\d{4}", // Regular expression for the recognized content (not used in deletion but shown in the original rule)
"suffix_reg": "", // Suffix (not used in deletion but shown in the original rule)
"alias": "0_8-digit number - 4-digit number", // Alias displayed in the software (not used in deletion but shown in the original rule)
"is_delete": 1 // 1 means this rule is marked for deletion
}
// ADD
// {
// "type": 1,
// "pos": "orderCode",
// "prefix_reg": "O_",
// "content_reg": "\\d{8}-\\d{4}",
// "suffix_reg": "",
// "alias": "0_8-digit number - 4-digit number"
// }
// UPDATE
// {
// "pos_id": 10,
// "prefix_reg": "O_",
// "content_reg": "\\d{8}-\\d{4}",
// "suffix_reg": "",
// "alias": "0_8-digit number - 4-digit number"
// }
// DELETE
// {
// "pos_id": 10,
// "is_delete": 1
// }