dew/.project/infrastructure/services/postgresql-18/schemas/configure.schema.json

36 lines
879 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://artificery.dev/dew/samples/postgresql-18/configure.schema.json",
"title": "PostgreSQL 18 Sample Configuration",
"description": "Configuration values represented by the sample PostgreSQL 18 Quadlet.",
"type": "object",
"additionalProperties": false,
"properties": {
"host_port": {
"type": "integer",
"minimum": 1,
"maximum": 65535,
"default": 5432
},
"database": {
"type": "string",
"minLength": 1,
"default": "dew"
},
"username": {
"type": "string",
"minLength": 1,
"default": "dew"
},
"password": {
"type": "string",
"minLength": 8,
"default": "dew_dev_password"
},
"volume": {
"type": "string",
"minLength": 1,
"default": "dew_postgresql_18_data"
}
}
}