scim.json 737 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "filter": {
  3. "name": "filter",
  4. "in": "query",
  5. "required": false,
  6. "description": "A SCIM filter expression. The only operator currently supported is `eq`.",
  7. "schema": {
  8. "type": "string"
  9. }
  10. },
  11. "startIndex": {
  12. "name": "startIndex",
  13. "in": "query",
  14. "required": false,
  15. "description": "SCIM 1-offset based index for pagination.",
  16. "schema": {
  17. "type": "integer"
  18. }
  19. },
  20. "count": {
  21. "name": "count",
  22. "in": "query",
  23. "required": false,
  24. "description": "The maximum number of results the query should return, maximum of 100.",
  25. "schema": {
  26. "type": "integer"
  27. }
  28. }
  29. }