{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/architecture-pattern/refs/heads/main/json-schema/architecture-pattern-api-pattern-schema.json", "title": "Pattern", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "domain": { "type": "string" }, "description": { "type": "string" }, "context": { "type": "string" }, "problem": { "type": "string" }, "solution": { "type": "string" }, "resultingContext": { "type": "string" }, "tags": { "type": "array", "items": { "type": "string" } }, "relatedPatterns": { "type": "array", "items": { "type": "string" } }, "externalReferences": { "type": "array", "items": { "type": "string" } }, "confidence": { "type": "string", "enum": [ "proven", "candidate", "experimental" ] } } }