assemble_strategy.schema.json 710 B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "title": "assemble_strategy_output",
  4. "type": "object",
  5. "required": ["matches-boundary"],
  6. "properties": {
  7. "matches-boundary": {
  8. "type": "array",
  9. "minItems": 1,
  10. "items": {
  11. "type": "object",
  12. "required": ["cluster_id-ref", "step_index-ref", "capabilities-boundary"],
  13. "properties": {
  14. "cluster_id-ref": { "type": "string", "minLength": 1 },
  15. "step_index-ref": { "type": "integer", "minimum": 0 },
  16. "capabilities-boundary": {
  17. "type": "array",
  18. "items": { "type": "string", "pattern": "^[A-Z]{2,3}-[0-9]{2,3}$" }
  19. }
  20. }
  21. }
  22. }
  23. }
  24. }