planetscale · Schema

ServiceTokenWithPlaintext

View JSON Schema on GitHub

JSON Schema

planetscale-servicetokenwithplaintext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceTokenWithPlaintext",
  "title": "ServiceTokenWithPlaintext",
  "allOf": [
    {
      "$ref": "#/components/schemas/ServiceToken"
    },
    {
      "type": "object",
      "properties": {
        "token": {
          "type": "string",
          "description": "The plaintext token value. Only returned during creation."
        }
      }
    }
  ]
}