score_processes.schema.json 701 B

12345678910111213141516171819202122
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "title": "score_processes_output",
  4. "type": "object",
  5. "required": ["scored_clusters-boundary"],
  6. "properties": {
  7. "scored_clusters-boundary": {
  8. "type": "array",
  9. "minItems": 1,
  10. "items": {
  11. "type": "object",
  12. "required": ["cluster_id-ref", "cluster_name", "score-ref", "explanation"],
  13. "properties": {
  14. "cluster_id-ref": { "type": "string", "minLength": 1 },
  15. "cluster_name": { "type": "string", "minLength": 1 },
  16. "score-ref": { "type": "number", "minimum": 0, "maximum": 1 },
  17. "explanation": { "type": "string", "minLength": 1 }
  18. }
  19. }
  20. }
  21. }
  22. }