Architectural Design Patterns · Schema
Pattern
Design PatternsSoftware ArchitectureBest PracticesSoftware EngineeringSystem DesignMicroservices
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| category | string | |
| description | string | |
| problem | string | |
| solution | string | |
| consequences | array | |
| tags | array | |
| relatedPatterns | array | |
| applicability | string | |
| knownUses | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/architectural-design-patterns/refs/heads/main/json-schema/architectural-design-patterns-api-pattern-schema.json",
"title": "Pattern",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"category": {
"type": "string"
},
"description": {
"type": "string"
},
"problem": {
"type": "string"
},
"solution": {
"type": "string"
},
"consequences": {
"type": "array",
"items": {
"type": "string"
}
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"relatedPatterns": {
"type": "array",
"items": {
"type": "string"
}
},
"applicability": {
"type": "string"
},
"knownUses": {
"type": "array",
"items": {
"type": "string"
}
}
}
}