'description'=>__('Limit response to objects registered before (or at) a given ISO8601 compliant datetime.','wc-admin'),
'type'=>'string',
'format'=>'date-time',
'validate_callback'=>'rest_validate_request_arg',
);
$params['registered_after']=array(
'description'=>__('Limit response to objects registered after (or at) a given ISO8601 compliant datetime.','wc-admin'),
'type'=>'string',
'format'=>'date-time',
'validate_callback'=>'rest_validate_request_arg',
);
$params['match']=array(
'description'=>__('Indicates whether all the conditions should be true for the resulting set, or if any one of them is sufficient. Match affects the following parameters: status_is, status_is_not, product_includes, product_excludes, coupon_includes, coupon_excludes, customer, categories','wc-admin'),
'type'=>'string',
'default'=>'all',
'enum'=>array(
'all',
'any',
),
'validate_callback'=>'rest_validate_request_arg',
);
$params['name']=array(
'description'=>__('Limit response to objects with a specfic customer name.','wc-admin'),
'type'=>'string',
'validate_callback'=>'rest_validate_request_arg',
);
$params['username']=array(
'description'=>__('Limit response to objects with a specfic username.','wc-admin'),
'type'=>'string',
'validate_callback'=>'rest_validate_request_arg',
);
$params['email']=array(
'description'=>__('Limit response to objects equal to an email.','wc-admin'),
'type'=>'string',
'validate_callback'=>'rest_validate_request_arg',
);
$params['country']=array(
'description'=>__('Limit response to objects with a specfic country.','wc-admin'),
'type'=>'string',
'validate_callback'=>'rest_validate_request_arg',
);
$params['last_active_before']=array(
'description'=>__('Limit response to objects last active before (or at) a given ISO8601 compliant datetime.','wc-admin'),
'type'=>'string',
'format'=>'date-time',
'validate_callback'=>'rest_validate_request_arg',
);
$params['last_active_after']=array(
'description'=>__('Limit response to objects last active after (or at) a given ISO8601 compliant datetime.','wc-admin'),
'type'=>'string',
'format'=>'date-time',
'validate_callback'=>'rest_validate_request_arg',
);
$params['registered_before']=array(
'description'=>__('Limit response to objects registered before (or at) a given ISO8601 compliant datetime.','wc-admin'),
'type'=>'string',
'format'=>'date-time',
'validate_callback'=>'rest_validate_request_arg',
);
$params['registered_after']=array(
'description'=>__('Limit response to objects registered after (or at) a given ISO8601 compliant datetime.','wc-admin'),
'type'=>'string',
'format'=>'date-time',
'validate_callback'=>'rest_validate_request_arg',
);
$params['orders_count_min']=array(
'description'=>__('Limit response to objects with an order count greater than or equal to given integer.','wc-admin'),
'type'=>'integer',
'sanitize_callback'=>'absint',
'validate_callback'=>'rest_validate_request_arg',
);
$params['orders_count_max']=array(
'description'=>__('Limit response to objects with an order count less than or equal to given integer.','wc-admin'),
'type'=>'integer',
'sanitize_callback'=>'absint',
'validate_callback'=>'rest_validate_request_arg',
);
$params['orders_count_between']=array(
'description'=>__('Limit response to objects with an order count between two given integers.','wc-admin'),