Shell · Schema

LubricantsAccount

AviationElectric Vehicle ChargingEnergyFleet ManagementFuelGasLoyaltyLubricantsMobilityOil and GasRenewable Energy

Properties

Name Type Description
accountNumber string
companyName string
accountType string
creditLimit number
availableCredit number
currency string
paymentTerms string
primaryContact object
View JSON Schema on GitHub

JSON Schema

shell-lubricantsaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LubricantsAccount",
  "title": "LubricantsAccount",
  "type": "object",
  "properties": {
    "accountNumber": {
      "type": "string"
    },
    "companyName": {
      "type": "string"
    },
    "accountType": {
      "type": "string"
    },
    "creditLimit": {
      "type": "number"
    },
    "availableCredit": {
      "type": "number"
    },
    "currency": {
      "type": "string"
    },
    "paymentTerms": {
      "type": "string"
    },
    "primaryContact": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "email": {
          "type": "string"
        },
        "phone": {
          "type": "string"
        }
      }
    }
  }
}