USPTO · Schema
TrademarkStatus
GovernmentIntellectual PropertyOpen DataPatentsRegulatoryTrademarksUSPTO
Properties
| Name | Type | Description |
|---|---|---|
| serialNumber | string | |
| registrationNumber | string | |
| markLiteralElements | string | Text elements of the mark |
| status | string | |
| statusCode | string | |
| statusDate | string | |
| filingDate | string | |
| registrationDate | string | |
| expirationDate | string | |
| applicantName | string | |
| goodsAndServices | string | |
| internationalClasses | array | |
| prosecutionHistory | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TrademarkStatus",
"title": "TrademarkStatus",
"type": "object",
"properties": {
"serialNumber": {
"type": "string"
},
"registrationNumber": {
"type": "string",
"nullable": true
},
"markLiteralElements": {
"type": "string",
"description": "Text elements of the mark"
},
"status": {
"type": "string"
},
"statusCode": {
"type": "string"
},
"statusDate": {
"type": "string",
"format": "date"
},
"filingDate": {
"type": "string",
"format": "date"
},
"registrationDate": {
"type": "string",
"format": "date",
"nullable": true
},
"expirationDate": {
"type": "string",
"format": "date",
"nullable": true
},
"applicantName": {
"type": "string"
},
"goodsAndServices": {
"type": "string"
},
"internationalClasses": {
"type": "array",
"items": {
"type": "integer"
}
},
"prosecutionHistory": {
"type": "array",
"items": {
"type": "object",
"properties": {
"date": {
"type": "string",
"format": "date"
},
"code": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
}
}
}