APIs.io Engineering Platform · Schema
code-scanning-default-setup
Configuration for code scanning default setup.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| state | string | Code scanning default setup has been configured or not. |
| languages | array | Languages to be analyzed. |
| query_suite | string | CodeQL query suite to be used. |
| updated_at | string | Timestamp of latest configuration update. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/code-scanning-default-setup",
"title": "code-scanning-default-setup",
"description": "Configuration for code scanning default setup.",
"type": "object",
"properties": {
"state": {
"description": "Code scanning default setup has been configured or not.",
"type": "string",
"enum": [
"configured",
"not-configured"
]
},
"languages": {
"description": "Languages to be analyzed.",
"type": "array",
"items": {
"type": "string",
"enum": [
"c-cpp",
"csharp",
"go",
"java-kotlin",
"javascript-typescript",
"javascript",
"python",
"ruby",
"typescript",
"swift"
]
}
},
"query_suite": {
"description": "CodeQL query suite to be used.",
"type": "string",
"enum": [
"default",
"extended"
]
},
"updated_at": {
"description": "Timestamp of latest configuration update.",
"nullable": true,
"type": "string",
"format": "date-time",
"example": "2023-12-06T14:20:20.000Z"
}
}
}