{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/source-code-api-validation-warning-structure.json", "name": "ValidationWarning", "description": "A validation warning", "type": "object", "properties": { "message": { "type": "string", "description": "Warning description", "example": "Deprecated function 'blog_recent_posts' used" }, "line": { "type": "int32", "description": "Line number where the warning occurred", "example": 28 }, "suggestion": { "type": "string", "description": "Suggested fix", "example": "Use 'blog_posts' function instead" } }, "required": [ "message" ] }