Jobber · Schema

Jobber Invoice

An Invoice issued to a Client for a Job or set of services. Tracks net amount, taxes, balance owing, and payment status.

Field Service ManagementHome ServiceSchedulingQuotingInvoicingDispatchingMobile WorkforceCRMSoftware-as-a-ServiceGraphQL

Properties

Name Type Description
id string
invoiceNumber string
subject string
message string
issuedDate string
dueDate string
invoiceStatus string Current invoice status.
amounts object
client object
lineItems array
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

jobber-invoice-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/jobber/refs/heads/main/json-schema/jobber-invoice-schema.json",
  "title": "Jobber Invoice",
  "description": "An Invoice issued to a Client for a Job or set of services. Tracks net amount, taxes, balance owing, and payment status.",
  "type": "object",
  "properties": {
    "id": { "type": "string" },
    "invoiceNumber": { "type": "string" },
    "subject": { "type": "string" },
    "message": { "type": "string" },
    "issuedDate": { "type": "string", "format": "date" },
    "dueDate": { "type": "string", "format": "date" },
    "invoiceStatus": {
      "type": "string",
      "enum": ["DRAFT", "AWAITING_PAYMENT", "PAID", "BAD_DEBT", "PAST_DUE"],
      "description": "Current invoice status."
    },
    "amounts": {
      "type": "object",
      "properties": {
        "subtotal": { "type": "number" },
        "discountAmount": { "type": "number" },
        "taxAmount": { "type": "number" },
        "total": { "type": "number" },
        "depositAmount": { "type": "number" },
        "paymentsTotal": { "type": "number" },
        "balance": { "type": "number" }
      }
    },
    "client": { "type": "object", "properties": { "id": { "type": "string" } } },
    "lineItems": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": { "type": "string" },
          "name": { "type": "string" },
          "description": { "type": "string" },
          "quantity": { "type": "number" },
          "unitPrice": { "type": "number" },
          "totalPrice": { "type": "number" }
        }
      }
    },
    "createdAt": { "type": "string", "format": "date-time" },
    "updatedAt": { "type": "string", "format": "date-time" }
  },
  "required": ["id"]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/jobber-invoice"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.