blob: 8ea27b6f65fde2c3931e80bae691c6c451e5af35 [file] [edit]
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Repository Configuration",
"description": "Schema for repositories for ecosystem testing",
"type": "object",
"patternProperties": {
"^https:\\/\\/github\\.com\\/[^\\/]+\\/[^\\/]+$": {
"type": "object",
"properties": {
"level": {
"type": "string",
"description": "Level of testing depth.",
"enum": [
"solve",
"analyze",
"test"
]
},
"packages": {
"type": "object",
"description": "Packages which are tested using this repository",
"properties": {
"exclude": {
"type": "string",
"description": "Packages to exclude from the analysis"
}
}
}
},
"required": [
"level"
]
}
}
}