action jumpseller_get_products_id_options_option_id_values_count_json { label: "Count all Product Option Values." provider: jumpseller method: GET path: "/products/{id}/options/{option_id}/values/count.json" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } option_id: { type: "integer" format: "int32" } } required: ["id", "option_id"] additionalProperties: false } output: { properties: { count: { type: "integer" format: "int32" } } } }