Amazon Well-Architected Tool · Schema
Choice
A choice available to answer question.
ArchitectureBest PracticesCloud GovernanceWell-ArchitectedWorkloads
Properties
| Name | Type | Description |
|---|---|---|
| ChoiceId | object | |
| Title | object | |
| Description | object | |
| HelpfulResource | object | |
| ImprovementPlan | object | |
| AdditionalResources | object |
JSON Schema
{
"type": "object",
"properties": {
"ChoiceId": {
"$ref": "#/components/schemas/ChoiceId"
},
"Title": {
"$ref": "#/components/schemas/ChoiceTitle"
},
"Description": {
"$ref": "#/components/schemas/ChoiceDescription"
},
"HelpfulResource": {
"allOf": [
{
"$ref": "#/components/schemas/ChoiceContent"
},
{
"description": "<p>The helpful resource (both text and URL) for a particular choice.</p> <p>This field only applies to custom lenses. Each choice can have only one helpful resource.</p>"
}
]
},
"ImprovementPlan": {
"allOf": [
{
"$ref": "#/components/schemas/ChoiceContent"
},
{
"description": "<p>The improvement plan (both text and URL) for a particular choice.</p> <p>This field only applies to custom lenses. Each choice can have only one improvement plan.</p>"
}
]
},
"AdditionalResources": {
"allOf": [
{
"$ref": "#/components/schemas/AdditionalResourcesList"
},
{
"description": "<p>The additional resources for a choice in a custom lens.</p> <p>A choice can have up to two additional resources: one of type <code>HELPFUL_RESOURCE</code>, one of type <code>IMPROVEMENT_PLAN</code>, or both.</p>"
}
]
}
},
"description": "A choice available to answer question.",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Choice",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-well-architected-tool/refs/heads/main/json-schema/well-architected-tool-choice-schema.json"
}