operator-schema.json 931 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "$schema": "http://json-schema.org/schema",
  3. "description": "All input types of builders that perform operations on one or multiple sub-builders.",
  4. "type": "object",
  5. "properties": {
  6. "builders": {
  7. "type": "array",
  8. "items": {
  9. "type": "object",
  10. "properties": {
  11. "builder": {
  12. "type": "string",
  13. "pattern": ".*:.*"
  14. },
  15. "options": {
  16. "type": "object"
  17. }
  18. },
  19. "required": [
  20. "builder"
  21. ]
  22. },
  23. "minItems": 1
  24. },
  25. "targets": {
  26. "type": "array",
  27. "items": {
  28. "type": "object",
  29. "properties": {
  30. "target": {
  31. "type": "string",
  32. "pattern": ".*:.*"
  33. },
  34. "overrides": {
  35. "type": "object"
  36. }
  37. },
  38. "required": [
  39. "target"
  40. ]
  41. },
  42. "minItems": 1
  43. }
  44. }
  45. }