required: true
content:
  application/json:
    schema:
      type: object
      properties:
        databaseConnection:
          allOf:
            - $ref: "../schemas/DatabaseConnectionBase.yaml"
            - type: object
              properties:
                password:
                  description: The password of the user to connect to the database as.
                  type: string
                  nullable: false
              required:
                - password
      required:
        - databaseConnection
    examples:
      databaseConnection:
        value:
          $ref: "../examples/createDatabaseConnection_request.yaml"
