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
The Response Schema for the code scanning alert endpoint(for organizations) defines 4 valid values for classifications. When using this endpoint we sometimes get the value "documentation" which is not listed.
"code-scanning-alert-classification": {
"type": "string",
"description": "A classification of the file. For example to identify it as generated.",
"nullable": true,
"enum": [
"source",
"generated",
"test",
"library"
]
},
Expected
The schema should include all values
"code-scanning-alert-classification": {
"type": "string",
"description": "A classification of the file. For example to identify it as generated.",
"nullable": true,
"enum": [
"source",
"generated",
"test",
"library",
"documentation"
]
},
Reproduction Steps
Due to the sensitive nature of the alerts I cannot provide an explicit example.
The text was updated successfully, but these errors were encountered:
Schema Inaccuracy
The Response Schema for the code scanning alert endpoint(for organizations) defines 4 valid values for classifications. When using this endpoint we sometimes get the value "documentation" which is not listed.
Expected
The schema should include all values
Reproduction Steps
Due to the sensitive nature of the alerts I cannot provide an explicit example.
The text was updated successfully, but these errors were encountered: