search_rackets
Search published rackets using literal, case-insensitive catalogue filters.
Parameters10
| query | any | optional | |
| brand | any | optional | |
| year | any | optional | |
| min_score | any | optional | |
| max_score | any | optional | |
| editorial_player_level_tag | any | optional | |
| audience | any | optional | |
| limit | integer | optional | |
| offset | integer | optional | |
| sort | string | optional |
Raw schema
{
"type": "object",
"properties": {
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Query"
},
"brand": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Brand"
},
"year": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Year"
},
"min_score": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Min Score"
},
"max_score": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Max Score"
},
"editorial_player_level_tag": {
"anyOf": [
{
"enum": [
"beginner",
"intermediate",
"advanced"
],
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Editorial Player Level Tag"
},
"audience": {
"anyOf": [
{
"const": "women",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Audience"
},
"limit": {
"default": 10,
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"title": "Offset",
"type": "integer"
},
"sort": {
"default": "score_desc",
"enum": [
"score_desc",
"name_asc"
],
"title": "Sort",
"type": "string"
}
},
"title": "search_racketsArguments"
}