{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eks/refs/heads/main/json-schema/eks-openapi-create-addon-request-schema.json", "title": "CreateAddonRequest", "description": "CreateAddonRequest schema from Amazon EKS API", "type": "object", "properties": { "addonName": { "type": "string" }, "addonVersion": { "type": "string" }, "serviceAccountRoleArn": { "type": "string" }, "resolveConflicts": { "type": "string", "enum": [ "OVERWRITE", "NONE" ] }, "tags": { "type": "object", "additionalProperties": { "type": "string" } } }, "required": [ "addonName" ] }