USPTO · Schema
PTABTrialSummary
GovernmentIntellectual PropertyOpen DataPatentsRegulatoryTrademarksUSPTO
Properties
| Name | Type | Description |
|---|---|---|
| trialNumber | string | |
| proceedingType | string | |
| status | string | |
| patentNumber | string | |
| petitionerName | string | |
| patentOwnerName | string | |
| filingDate | string | |
| institutionDate | string | |
| finalDecisionDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PTABTrialSummary",
"title": "PTABTrialSummary",
"type": "object",
"properties": {
"trialNumber": {
"type": "string"
},
"proceedingType": {
"type": "string",
"enum": [
"IPR",
"PGR",
"CBM",
"DER",
"POP"
]
},
"status": {
"type": "string"
},
"patentNumber": {
"type": "string"
},
"petitionerName": {
"type": "string"
},
"patentOwnerName": {
"type": "string"
},
"filingDate": {
"type": "string",
"format": "date"
},
"institutionDate": {
"type": "string",
"format": "date",
"nullable": true
},
"finalDecisionDate": {
"type": "string",
"format": "date",
"nullable": true
}
}
}