USPTO Patent Application

JSON Schema for a USPTO patent application record from the Open Data Portal API.

Federal-GovernmentPatentsTrademarksIntellectual PropertyOpen Data

Properties

Name Type Description
applicationNumberText string Unique patent application number assigned by USPTO
applicationTypeLabelName string Type of patent application
applicationStatusCode string Current prosecution status code
applicationStatusDate string Date of the most recent status change
applicationFilingDate string Date the application was filed with USPTO
grantDate stringnull Date the patent was issued (null if not yet granted)
patentNumber stringnull Issued patent number (null if not yet granted)
inventionTitle string Title of the invention as filed
inventors array List of named inventors
applicants array List of applicants/assignees
attorneys array List of registered attorneys
classifications array Patent classification codes (CPC, USPC)
View JSON Schema on GitHub

JSON Schema

uspto-patent-application-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/us-patent-and-trademark-office/main/json-schema/uspto-patent-application-schema.json",
  "title": "USPTO Patent Application",
  "description": "JSON Schema for a USPTO patent application record from the Open Data Portal API.",
  "type": "object",
  "properties": {
    "applicationNumberText": {
      "type": "string",
      "description": "Unique patent application number assigned by USPTO",
      "example": "18123456"
    },
    "applicationTypeLabelName": {
      "type": "string",
      "description": "Type of patent application",
      "enum": ["Utility", "Design", "Plant", "Reissue", "Provisional"]
    },
    "applicationStatusCode": {
      "type": "string",
      "description": "Current prosecution status code"
    },
    "applicationStatusDate": {
      "type": "string",
      "format": "date",
      "description": "Date of the most recent status change"
    },
    "applicationFilingDate": {
      "type": "string",
      "format": "date",
      "description": "Date the application was filed with USPTO"
    },
    "grantDate": {
      "type": ["string", "null"],
      "format": "date",
      "description": "Date the patent was issued (null if not yet granted)"
    },
    "patentNumber": {
      "type": ["string", "null"],
      "description": "Issued patent number (null if not yet granted)"
    },
    "inventionTitle": {
      "type": "string",
      "description": "Title of the invention as filed"
    },
    "inventors": {
      "type": "array",
      "description": "List of named inventors",
      "items": {
        "$ref": "#/$defs/Inventor"
      }
    },
    "applicants": {
      "type": "array",
      "description": "List of applicants/assignees",
      "items": {
        "$ref": "#/$defs/Applicant"
      }
    },
    "attorneys": {
      "type": "array",
      "description": "List of registered attorneys",
      "items": {
        "$ref": "#/$defs/Attorney"
      }
    },
    "classifications": {
      "type": "array",
      "description": "Patent classification codes (CPC, USPC)",
      "items": {
        "$ref": "#/$defs/Classification"
      }
    }
  },
  "required": ["applicationNumberText", "applicationFilingDate", "inventionTitle"],
  "$defs": {
    "Inventor": {
      "type": "object",
      "description": "A named inventor on the patent application",
      "properties": {
        "inventorNameText": {
          "type": "string",
          "description": "Full name of the inventor"
        },
        "inventorCity": {
          "type": "string",
          "description": "City of residence"
        },
        "inventorStateCode": {
          "type": "string",
          "description": "State/province code"
        },
        "inventorCountryCode": {
          "type": "string",
          "description": "ISO 3166 country code"
        }
      },
      "required": ["inventorNameText"]
    },
    "Applicant": {
      "type": "object",
      "description": "An applicant or assignee on the patent application",
      "properties": {
        "applicantNameText": {
          "type": "string",
          "description": "Full name or organization name"
        },
        "applicantCity": {
          "type": "string"
        },
        "applicantStateCode": {
          "type": "string"
        },
        "applicantCountryCode": {
          "type": "string"
        }
      },
      "required": ["applicantNameText"]
    },
    "Attorney": {
      "type": "object",
      "description": "A registered patent attorney or agent",
      "properties": {
        "registrationNumber": {
          "type": "string",
          "description": "USPTO registration number"
        },
        "fullName": {
          "type": "string",
          "description": "Full name of the attorney"
        }
      }
    },
    "Classification": {
      "type": "object",
      "description": "Patent classification code",
      "properties": {
        "classificationSymbolText": {
          "type": "string",
          "description": "CPC classification symbol"
        },
        "uspcSymbolText": {
          "type": "string",
          "description": "USPC classification symbol"
        }
      }
    }
  }
}

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/uspto-patent-application"
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.