mirror of
https://github.com/foomo/posh-providers.git
synced 2025-10-16 12:35:41 +00:00
32 lines
655 B
JSON
32 lines
655 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://github.com/foomo/posh-providers/grafana/k6/config",
|
|
"$ref": "#/$defs/Config",
|
|
"$defs": {
|
|
"Config": {
|
|
"properties": {
|
|
"path": {
|
|
"type": "string"
|
|
},
|
|
"envs": {
|
|
"additionalProperties": {
|
|
"$ref": "#/$defs/Env"
|
|
},
|
|
"type": "object"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"required": [
|
|
"path",
|
|
"envs"
|
|
]
|
|
},
|
|
"Env": {
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
},
|
|
"type": "object"
|
|
}
|
|
}
|
|
} |