USPTO · Schema

Inventor

GovernmentIntellectual PropertyOpen DataPatentsRegulatoryTrademarksUSPTO

Properties

Name Type Description
firstName string
lastName string
city string
state string
country string
View JSON Schema on GitHub

JSON Schema

uspto-inventor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Inventor",
  "title": "Inventor",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "country": {
      "type": "string"
    }
  }
}