Jobber · Schema

Jobber Client

A Client record in Jobber. Represents a person or business the user provides home or commercial services to. Schema derived from public GraphQL field documentation.

Field Service ManagementHome ServiceSchedulingQuotingInvoicingDispatchingMobile WorkforceCRMSoftware-as-a-ServiceGraphQL

Properties

Name Type Description
id string Globally unique encoded ID for the Client.
firstName string Primary contact's first name.
lastName string Primary contact's last name.
companyName string Company name when the client is a business.
title string Salutation or title for the primary contact.
emails array
phones array
billingAddress object
properties array Service properties associated with the client.
balance number Outstanding balance owed by the client in account currency.
isLead boolean True when the client is still a sales lead.
isArchived boolean
tags array
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

jobber-client-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-client-schema.json",
  "title": "Jobber Client",
  "description": "A Client record in Jobber. Represents a person or business the user provides home or commercial services to. Schema derived from public GraphQL field documentation.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Globally unique encoded ID for the Client."
    },
    "firstName": {
      "type": "string",
      "description": "Primary contact's first name."
    },
    "lastName": {
      "type": "string",
      "description": "Primary contact's last name."
    },
    "companyName": {
      "type": "string",
      "description": "Company name when the client is a business."
    },
    "title": {
      "type": "string",
      "description": "Salutation or title for the primary contact."
    },
    "emails": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "address": { "type": "string", "format": "email" },
          "description": { "type": "string" },
          "primary": { "type": "boolean" }
        }
      }
    },
    "phones": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "number": { "type": "string" },
          "description": { "type": "string" },
          "primary": { "type": "boolean" },
          "smsAllowed": { "type": "boolean" }
        }
      }
    },
    "billingAddress": {
      "$ref": "#/definitions/Address"
    },
    "properties": {
      "type": "array",
      "items": { "$ref": "#/definitions/PropertyRef" },
      "description": "Service properties associated with the client."
    },
    "balance": {
      "type": "number",
      "description": "Outstanding balance owed by the client in account currency."
    },
    "isLead": {
      "type": "boolean",
      "description": "True when the client is still a sales lead."
    },
    "isArchived": {
      "type": "boolean"
    },
    "tags": {
      "type": "array",
      "items": { "type": "string" }
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": ["id"],
  "definitions": {
    "Address": {
      "type": "object",
      "properties": {
        "street1": { "type": "string" },
        "street2": { "type": "string" },
        "city": { "type": "string" },
        "province": { "type": "string" },
        "postalCode": { "type": "string" },
        "country": { "type": "string" }
      }
    },
    "PropertyRef": {
      "type": "object",
      "properties": {
        "id": { "type": "string" },
        "address": { "$ref": "#/definitions/Address" }
      }
    }
  }
}

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-client"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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