USPTO · Schema

Assignee

GovernmentIntellectual PropertyOpen DataPatentsRegulatoryTrademarksUSPTO

Properties

Name Type Description
name string
entityType string
city string
state string
country string
View JSON Schema on GitHub

JSON Schema

uspto-assignee-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Assignee",
  "title": "Assignee",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "entityType": {
      "type": "string",
      "enum": [
        "INDIVIDUAL",
        "COMPANY",
        "UNIVERSITY",
        "GOVERNMENT"
      ]
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "country": {
      "type": "string"
    }
  }
}