examples.json 627 B

1234567891011121314151617181920212223
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "$id": "examples",
  4. "type": "object",
  5. "definitions": {
  6. "name": {
  7. "description": "Name",
  8. "example": "John Smith",
  9. "type": "string",
  10. "minLength": 1,
  11. "maxLength": 255
  12. },
  13. "auth_header": {
  14. "Authorization": "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.O_frfYM8RzmRsUNigHtu0_jZ_utSejyr1axMGa8rlsk",
  15. "X-API-Version": "next"
  16. },
  17. "token": {
  18. "type": "string",
  19. "description": "JWT",
  20. "example": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.O_frfYM8RzmRsUNigHtu0_jZ_utSejyr1axMGa8rlsk"
  21. }
  22. }
  23. }