{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GitProviderFileLinkResolveResponse", "title": "GitProviderFileLinkResolveResponse", "type": "object", "properties": { "found": { "type": "boolean", "description": "Whether a matching file URL was found." }, "url": { "type": "string", "description": "Resolved URL for the matching file." }, "error": { "type": "string", "description": "Error message when input parameters are invalid." } }, "required": [ "found" ] }