linode · Schema

Payment

Properties

Name Type Description
id integer The unique ID of this payment.
date string The date this payment was made.
usd number The amount in US dollars.
View JSON Schema on GitHub

JSON Schema

linode-payment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Payment",
  "title": "Payment",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The unique ID of this payment."
    },
    "date": {
      "type": "string",
      "format": "date-time",
      "description": "The date this payment was made."
    },
    "usd": {
      "type": "number",
      "description": "The amount in US dollars."
    }
  }
}