Red Hat 3scale · Schema

InvoiceLineItem

API GatewayAPI ManagementDeveloper PortalEnterpriseRed Hat

Properties

Name Type Description
id integer
name string Description of the line item
cost number Cost for this line item
quantity number Quantity consumed
type string Type of charge (setup, recurring, variable)
View JSON Schema on GitHub

JSON Schema

red-hat-3scale-invoicelineitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InvoiceLineItem",
  "title": "InvoiceLineItem",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string",
      "description": "Description of the line item"
    },
    "cost": {
      "type": "number",
      "description": "Cost for this line item"
    },
    "quantity": {
      "type": "number",
      "description": "Quantity consumed"
    },
    "type": {
      "type": "string",
      "description": "Type of charge (setup, recurring, variable)"
    }
  }
}