# Schema Inaccuracy <!--- Describe the problem shortly. Include the specific operation / schema that contains an error. --> As per the response schema for: - [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's schema is as follows: ``` "submission": { "type": [ "object", "null" ], "readOnly": true, "properties": { "accepted": { "type": "boolean", "description": "Whether a private vulnerability report was accepted by the repository's administrators.", "readOnly": true } }, "required": [ "accepted" ] } ``` i.e. 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 } ] ``` _Screenshot from official documentation:_ <img width="220" alt="image" src="https://github.com/github/rest-api-description/assets/56666741/bb7f48e9-0821-429d-beee-cc2d18c04cc9"> ## Expected <!--- What was expected? For example: The `labels` property on the `Issue` schema should be of type `array` instead of `string`. ---> The response example for both the above API calls should have the `submission` field as: ``` "submission": { "accepted": true } ``` For the [Report a security vulnerability (/repos/{owner}/{repo}/security-advisories/reports)](https://docs.github.com/en/rest/security-advisories/repository-advisories?apiVersion=2022-11-28#privately-report-a-security-vulnerability) API call, the `submission` field's schema is the same as above 2 API calls but the response example has the `submission` field in correct format. <img width="1485" alt="image" src="https://github.com/github/rest-api-description/assets/56666741/6f66b670-99b8-4c72-b52d-a46befd61132"> ## Reproduction Steps <!--- Include steps to reproduce the problem with the description. For example: $ curl -X POST https://api.github.com/issues ---> Since this is an issue with documentation, there no requirement for reproducing anything.