| 12345678910111213141516171819202122 |
- {
- "$schema": "http://json-schema.org/draft-07/schema#",
- "title": "score_processes_output",
- "type": "object",
- "required": ["scored_clusters-boundary"],
- "properties": {
- "scored_clusters-boundary": {
- "type": "array",
- "minItems": 1,
- "items": {
- "type": "object",
- "required": ["cluster_id-ref", "cluster_name", "score-ref", "explanation"],
- "properties": {
- "cluster_id-ref": { "type": "string", "minLength": 1 },
- "cluster_name": { "type": "string", "minLength": 1 },
- "score-ref": { "type": "number", "minimum": 0, "maximum": 1 },
- "explanation": { "type": "string", "minLength": 1 }
- }
- }
- }
- }
- }
|