posh-providers/sqlc-dev/sqlc/config.schema.json
2025-09-19 16:29:28 +02:00

23 lines
473 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/foomo/posh-providers/sqlc-dev/sqlc",
"$ref": "#/$defs/Config",
"$defs": {
"Config": {
"properties": {
"tempDir": {
"type": "string"
},
"cacheDir": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"tempDir",
"cacheDir"
]
}
}
}