WattTime · Schema

RegisterRequest

RegisterRequest schema from WattTime API

EmissionsClimateCarbonEnergyElectricity GridSustainabilityClean Energy

Properties

Name Type Description
username string Desired username for the new account.
password string Password for the new account.
email string Email address for the new account.
org string Organization or company name.
View JSON Schema on GitHub

JSON Schema

watttime-register-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/watttime/refs/heads/main/json-schema/watttime-register-request-schema.json",
  "title": "RegisterRequest",
  "description": "RegisterRequest schema from WattTime API",
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "description": "Desired username for the new account.",
      "example": "johndoe"
    },
    "password": {
      "type": "string",
      "description": "Password for the new account.",
      "example": "securepassword123"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email address for the new account.",
      "example": "[email protected]"
    },
    "org": {
      "type": "string",
      "description": "Organization or company name.",
      "example": "Example Organization"
    }
  },
  "required": [
    "username",
    "password",
    "email",
    "org"
  ]
}