You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/user/emails/delete and /user/emails/post both contains:
"properties": {
"emails": {
"description": "Adds one or more email addresses to your GitHub account. Must contain at least one email address. **Note:** Alternatively, you can pass a single email address or an `array` of emails addresses directly, but we recommend that you pass an object using the `emails` key.",
"type": "array",
"items": {
"type": "string",
"example": "[email protected]",
"minItems": 1
},
"example": []
}
}
Expected
The minItems should be part of the array, not the string.
"properties": {
"emails": {
"description": "Adds one or more email addresses to your GitHub account. Must contain at least one email address. **Note:** Alternatively, you can pass a single email address or an `array` of emails addresses directly, but we recommend that you pass an object using the `emails` key.",
"type": "array",
"items": {
"type": "string",
"example": "[email protected]"
},
"minItems": 1"example": []
}
}
Reproduction Steps
The text was updated successfully, but these errors were encountered:
Schema Inaccuracy
/user/emails/delete
and/user/emails/post
both contains:Expected
The
minItems
should be part of the array, not the string.Reproduction Steps
The text was updated successfully, but these errors were encountered: