linode · Schema

Invoice

Properties

Name Type Description
id integer The unique ID of this invoice.
date string The date of this invoice.
label string The label for this invoice.
subtotal number The subtotal amount.
tax number The tax amount.
total number The total amount.
View JSON Schema on GitHub

JSON Schema

linode-invoice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Invoice",
  "title": "Invoice",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The unique ID of this invoice."
    },
    "date": {
      "type": "string",
      "format": "date-time",
      "description": "The date of this invoice."
    },
    "label": {
      "type": "string",
      "description": "The label for this invoice."
    },
    "subtotal": {
      "type": "number",
      "description": "The subtotal amount."
    },
    "tax": {
      "type": "number",
      "description": "The tax amount."
    },
    "total": {
      "type": "number",
      "description": "The total amount."
    }
  }
}