| 1234567891011121314151617 |
- {
- "$schema": "http://json-schema.org/draft-07/schema#",
- "title": "enrich_capability_output",
- "type": "object",
- "required": ["name-ref", "description-ref", "method", "effects-boundary", "body", "inputs", "outputs"],
- "properties": {
- "name-ref": { "type": "string", "minLength": 1 },
- "description-ref": { "type": "string", "minLength": 1 },
- "method": { "type": "string", "minLength": 1 },
- "effects-boundary": { "type": "array", "items": { "type": "string" } },
- "failure_modes": { "type": "string" },
- "inputs": { "type": "object" },
- "outputs": { "type": "object" },
- "body": { "type": "string", "minLength": 1 },
- "visual_notes": { "type": "string" }
- }
- }
|