UpdatePasswordInput

DatabaseTime-SeriesPostgreSQLOpen SourceCloudHypertablesContinuous AggregatesTiger Cloud

Properties

Name Type Description
password string The new password.
View JSON Schema on GitHub

JSON Schema

timescaledb-updatepasswordinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdatePasswordInput",
  "title": "UpdatePasswordInput",
  "type": "object",
  "required": [
    "password"
  ],
  "properties": {
    "password": {
      "type": "string",
      "description": "The new password.",
      "format": "password",
      "example": "a-very-secure-new-password"
    }
  }
}