Architecture Pattern · Schema
Pattern
Architecture PatternsSoftware ArchitectureDesign PatternsSystem DesignMicroservicesCloud Native
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| domain | string | |
| description | string | |
| context | string | |
| problem | string | |
| solution | string | |
| resultingContext | string | |
| tags | array | |
| relatedPatterns | array | |
| externalReferences | array | |
| confidence | string |
JSON Schema
{
"$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"
]
}
}
}