key.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. "Key": {
  2. "type": "object",
  3. "required": ["browserSdk", "browserSdkVersion", "dateCreated", "dsn", "id", "isActive", "label", "name", "projectId", "public", "rateLimit", "secret"],
  4. "properties": {
  5. "browserSdk": {
  6. "type": "object",
  7. "properties": {
  8. "choices": {
  9. "type": "array",
  10. "items": {
  11. "type": "array",
  12. "items": {
  13. "type": "string"
  14. }
  15. }
  16. }
  17. }
  18. },
  19. "browserSdkVersion": {
  20. "type": "string"
  21. },
  22. "dateCreated": {
  23. "type": "string"
  24. },
  25. "dsn": {
  26. "type": "object",
  27. "required": ["cdn", "csp", "minidump", "public", "secret", "security"],
  28. "properties": {
  29. "cdn": {
  30. "type": "string"
  31. },
  32. "csp": {
  33. "type": "string"
  34. },
  35. "minidump": {
  36. "type": "string"
  37. },
  38. "public": {
  39. "type": "string"
  40. },
  41. "secret": {
  42. "type": "string"
  43. },
  44. "security": {
  45. "type": "string"
  46. }
  47. }
  48. },
  49. "id": {
  50. "type": "string"
  51. },
  52. "isActive": {
  53. "type": "boolean"
  54. },
  55. "label": {
  56. "type": "string"
  57. },
  58. "name": {
  59. "type": "string"
  60. },
  61. "projectId": {
  62. "type": "integer"
  63. },
  64. "public": {
  65. "type": "string"
  66. },
  67. "rateLimit": {
  68. "type": "string",
  69. "nullable": true
  70. },
  71. "secret": {
  72. "type": "string"
  73. }
  74. }
  75. }