1234567891011121314151617181920212223242526272829 |
- {
- "filter": {
- "name": "filter",
- "in": "query",
- "required": false,
- "description": "A SCIM filter expression. The only operator currently supported is `eq`.",
- "schema": {
- "type": "string"
- }
- },
- "startIndex": {
- "name": "startIndex",
- "in": "query",
- "required": false,
- "description": "SCIM 1-offset based index for pagination.",
- "schema": {
- "type": "integer"
- }
- },
- "count": {
- "name": "count",
- "in": "query",
- "required": false,
- "description": "The maximum number of results the query should return, maximum of 100.",
- "schema": {
- "type": "integer"
- }
- }
- }
|