A user [reported](https://github.com/github/rest-api-description/issues/2902) that the `submission` field in the response is returning an array instead of a single object. The endpoints in question are: - [Lists repository security advisories for an organization - /orgs/{org}/security-advisories](https://docs.github.com/en/rest/security-advisories/repository-advisories?apiVersion=2022-11-28#list-repository-security-advisories-for-an-organization) - [Lists security advisories in a repository - /repos/{owner}/{repo}/security-advisories](https://docs.github.com/en/rest/security-advisories/repository-advisories?apiVersion=2022-11-28#list-repository-security-advisories) The submission field in the response should be as follows: ``` "submission": { "accepted": true } ``` But the response example for both these API calls have the submission field as: ``` "submission": [ { "accepted": true } ] ```