posh-providers/golang-migrate/migrate/config.schema.json
2025-09-22 10:25:50 +02:00

25 lines
572 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/foomo/posh-providers/golang-migrate/migrate",
"$ref": "#/$defs/Config",
"$defs": {
"Config": {
"properties": {
"sources": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"databases": {
"additionalProperties": {
"type": "string"
},
"type": "object"
}
},
"additionalProperties": false,
"type": "object"
}
}
}