Schema Inaccuracy
The description for that path talks about these media types, but the structured schema doesn't have them.
Expected
{
/*...*/
"paths": {
/*...*/
"/repos/{owner}/{repo}/compare/{basehead}": {
"get": {
"responses": {
"200": {
"content": {
"application/json": {"...": "..."},
"application/vnd.github.diff": {
"schema": {
"type": "string"
}
},
"application/vnd.github.patch": {
"schema": {
"type": "string"
}
}
}
}
}
}
}
}
}
Reproduction Steps
This applies to all variants:
Schema Inaccuracy
The description for that path talks about these media types, but the structured schema doesn't have them.
Expected
{ /*...*/ "paths": { /*...*/ "/repos/{owner}/{repo}/compare/{basehead}": { "get": { "responses": { "200": { "content": { "application/json": {"...": "..."}, "application/vnd.github.diff": { "schema": { "type": "string" } }, "application/vnd.github.patch": { "schema": { "type": "string" } } } } } } } } }Reproduction Steps
This applies to all variants: