{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/NodeCompatibilityIssue", "title": "NodeCompatibilityIssue", "type": "object", "properties": { "code": { "description": "The compatibility issue code.", "type": "string" }, "severity": { "description": "The severity of the issue.", "type": "string" }, "description": { "description": "The description of the issue.", "type": "string" }, "resolution": { "description": "Steps required to take in order to resolve the issue.", "type": "string" }, "affected_resources": { "description": "Details of the resources affected by the issue.", "type": "array", "items": { "$ref": "#/components/schemas/NodeCompatibilityIssueAffectedResource" } }, "documentation_url": { "description": "Doc URL for the compatibility issue.", "type": "string" } } }