2018-12-06 18:03:56 +01:00
|
|
|
[
|
|
|
|
{
|
|
|
|
"name": "_limit",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Maximum number of results possible",
|
|
|
|
"schema": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "_sort",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Sort according to a specific field.",
|
|
|
|
"schema": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "_start",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Skip a specific number of entries (especially useful for pagination)",
|
|
|
|
"schema": {
|
|
|
|
"type": "integer"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "=",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Get entries that matches exactly your input",
|
|
|
|
"schema": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "_ne",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Get records that are not equals to something",
|
|
|
|
"schema": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "_lt",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Get record that are lower than a value",
|
|
|
|
"schema": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "_lte",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Get records that are lower than or equal to a value",
|
|
|
|
"schema": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "_gt",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Get records that are greater than a value",
|
|
|
|
"schema": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "_gte",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Get records that are greater than or equal a value",
|
|
|
|
"schema": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "_contains",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Get records that contains a value",
|
|
|
|
"schema": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "_containss",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Get records that contains (case sensitive) a value",
|
|
|
|
"schema": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
2019-02-03 15:08:36 +03:30
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "_in",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Get records that matches any value in the array of values",
|
|
|
|
"schema": {
|
|
|
|
"type": "array"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "_nin",
|
|
|
|
"in": "query",
|
|
|
|
"required": false,
|
|
|
|
"description": "Get records that doesn't match any value in the array of values",
|
|
|
|
"schema": {
|
|
|
|
"type": "array"
|
|
|
|
},
|
|
|
|
"deprecated": false
|
2018-12-06 18:03:56 +01:00
|
|
|
}
|
|
|
|
]
|