build-20260802-065910: data current through 2026-07-31
Browse files- README.md +130 -130
- data/case_file/data_0.parquet +2 -2
- data/case_file/data_1.parquet +2 -2
- data/classification/data_0.parquet +2 -2
- data/correspondent/data_0.parquet +2 -2
- data/design_search/data_0.parquet +2 -2
- data/event/data_0.parquet +2 -2
- data/event/data_1.parquet +2 -2
- data/event/data_2.parquet +2 -2
- data/foreign_app/data_0.parquet +2 -2
- data/intl_class/data_0.parquet +2 -2
- data/madrid_intl_file/data_0.parquet +2 -2
- data/owner/data_0.parquet +2 -2
- data/owner/data_1.parquet +2 -2
- data/owner/data_2.parquet +3 -0
- data/owner_name_change/data_0.parquet +2 -2
- data/prior_mark/data_0.parquet +2 -2
- data/statement/data_0.parquet +2 -2
- data/statement/data_1.parquet +2 -2
- data/statement/data_2.parquet +2 -2
- data/statement/data_3.parquet +2 -2
- data/us_class/data_0.parquet +2 -2
- profile/build_lineage.json +42 -17
- profile/date_outliers.csv +5 -5
- profile/null_rates.csv +66 -66
- profile/row_counts.csv +13 -13
README.md
CHANGED
|
@@ -1,130 +1,130 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: other
|
| 3 |
-
license_name: us-government-work
|
| 4 |
-
license_link: https://www.usa.gov/government-works
|
| 5 |
-
pretty_name: USPTO Trademark Case Files (Silver)
|
| 6 |
-
tags:
|
| 7 |
-
- trademarks
|
| 8 |
-
- uspto
|
| 9 |
-
- legal
|
| 10 |
-
configs:
|
| 11 |
-
- config_name: case_file
|
| 12 |
-
data_files: data/case_file/*.parquet
|
| 13 |
-
- config_name: owner
|
| 14 |
-
data_files: data/owner/*.parquet
|
| 15 |
-
- config_name: classification
|
| 16 |
-
data_files: data/classification/*.parquet
|
| 17 |
-
- config_name: intl_class
|
| 18 |
-
data_files: data/intl_class/*.parquet
|
| 19 |
-
- config_name: us_class
|
| 20 |
-
data_files: data/us_class/*.parquet
|
| 21 |
-
- config_name: statement
|
| 22 |
-
data_files: data/statement/*.parquet
|
| 23 |
-
- config_name: event
|
| 24 |
-
data_files: data/event/*.parquet
|
| 25 |
-
- config_name: design_search
|
| 26 |
-
data_files: data/design_search/*.parquet
|
| 27 |
-
- config_name: prior_mark
|
| 28 |
-
data_files: data/prior_mark/*.parquet
|
| 29 |
-
- config_name: foreign_app
|
| 30 |
-
data_files: data/foreign_app/*.parquet
|
| 31 |
-
- config_name: madrid_intl_file
|
| 32 |
-
data_files: data/madrid_intl_file/*.parquet
|
| 33 |
-
- config_name: owner_name_change
|
| 34 |
-
data_files: data/owner_name_change/*.parquet
|
| 35 |
-
- config_name: correspondent
|
| 36 |
-
data_files: data/correspondent/*.parquet
|
| 37 |
-
- config_name: lookup_status_codes
|
| 38 |
-
data_files: lookups/status_codes.csv
|
| 39 |
-
- config_name: lookup_event_codes
|
| 40 |
-
data_files: lookups/event_codes.csv
|
| 41 |
-
- config_name: lookup_statement_types
|
| 42 |
-
data_files: lookups/statement_types.csv
|
| 43 |
-
- config_name: lookup_party_types
|
| 44 |
-
data_files: lookups/party_types.csv
|
| 45 |
-
- config_name: lookup_entity_codes
|
| 46 |
-
data_files: lookups/entity_codes.csv
|
| 47 |
-
- config_name: lookup_drawing_codes
|
| 48 |
-
data_files: lookups/drawing_codes.csv
|
| 49 |
-
---
|
| 50 |
-
|
| 51 |
-
# USPTO Trademark Case Files — analysis-ready Parquet
|
| 52 |
-
|
| 53 |
-
Complete USPTO trademark application/registration corpus, rebuilt from the
|
| 54 |
-
official bulk XML products and normalized into relational Parquet tables.
|
| 55 |
-
|
| 56 |
-
- **Sources:** USPTO Open Data Portal products **TRTYRAP** (Trademark Full
|
| 57 |
-
Text XML Data, No Images — Annual Applications; backfile from 1884) and
|
| 58 |
-
**TRTDXFAP** (same, Daily Applications), US Trademark Applications v2.0 DTD.
|
| 59 |
-
- **Data current through:** `2026-07-
|
| 60 |
-
`2025-12-31` + daily replay).
|
| 61 |
-
- **License:** United States government work — public domain.
|
| 62 |
-
- **Schema lineage:** table/column names follow the USPTO Office of the Chief
|
| 63 |
-
Economist (OCE) Trademark Case Files Dataset conventions, so existing
|
| 64 |
-
research code ports directly. `correspondent` is an extension beyond OCE.
|
| 65 |
-
|
| 66 |
-
## Querying (DuckDB, no download needed)
|
| 67 |
-
|
| 68 |
-
```sql
|
| 69 |
-
SELECT filing_dt, mark_id_char
|
| 70 |
-
FROM 'hf://datasets/illeatmyhat/uspto-trademarks/data/case_file/*.parquet'
|
| 71 |
-
WHERE serial_no = '75930757';
|
| 72 |
-
```
|
| 73 |
-
|
| 74 |
-
## Tables
|
| 75 |
-
|
| 76 |
-
| table | rows | grain |
|
| 77 |
-
|---|---:|---|
|
| 78 |
-
| case_file | 14,
|
| 79 |
-
| owner | 32,
|
| 80 |
-
| classification | 16,
|
| 81 |
-
| intl_class | 17,
|
| 82 |
-
| us_class | 60,
|
| 83 |
-
| statement | 29,
|
| 84 |
-
| event |
|
| 85 |
-
| design_search | 8,
|
| 86 |
-
| prior_mark | 2,
|
| 87 |
-
| foreign_app |
|
| 88 |
-
| madrid_intl_file |
|
| 89 |
-
| owner_name_change | 259,
|
| 90 |
-
| correspondent | 12,
|
| 91 |
-
|
| 92 |
-
`serial_no` (8-char zero-padded string) joins everything. Row counts, per-column
|
| 93 |
-
null rates and build lineage are published under `profile/`. USPTO's code
|
| 94 |
-
tables (case status, prosecution-history event, statement type, party,
|
| 95 |
-
legal entity, mark drawing) ship under `lookups/`, with per-table source
|
| 96 |
-
URL and retrieval date in `lookups/_sources.json`.
|
| 97 |
-
|
| 98 |
-
## Research & reproducibility
|
| 99 |
-
|
| 100 |
-
This corpus was assembled to study, quantitatively, the well-documented
|
| 101 |
-
post-2015 surge in coined trademark filings tied to online-marketplace
|
| 102 |
-
brand-gating (e.g. Amazon Brand Registry) — the phenomenon that motivated the
|
| 103 |
-
Trademark Modernization Act of 2020. Dimensions of interest, all computable
|
| 104 |
-
directly from the tables above: filing volume by year, owner geography, and
|
| 105 |
-
marketplace-gated class (9/11/18/20/21/25/28); coined single-token marks;
|
| 106 |
-
attorney-of-record filing concentration; the marks-per-owner ratio that
|
| 107 |
-
distinguishes ongoing law practices from high-churn filing operations;
|
| 108 |
-
goods/services identification length; and correspondent-address-level
|
| 109 |
-
aggregation of filing operations.
|
| 110 |
-
|
| 111 |
-
A complete, runnable methodology — DuckDB queries plus a versioned scoring
|
| 112 |
-
module that composes these signals into a ranked table — is in the open-source
|
| 113 |
-
pipeline: **[docs/ANALYSIS.md](https://github.com/illeatmyhat/uspto-trademark-radar/blob/main/docs/ANALYSIS.md)**. Every
|
| 114 |
-
figure is a factual measurement of public records and reproducible in minutes.
|
| 115 |
-
Results are descriptive patterns, not determinations about any filer; see the
|
| 116 |
-
document's "Reading the results" note.
|
| 117 |
-
|
| 118 |
-
## Update semantics & limitations
|
| 119 |
-
|
| 120 |
-
- **Latest state only.** Each case file appears once, in its most recent
|
| 121 |
-
known state (annual baseline + daily replay, latest-wins). Superseded field
|
| 122 |
-
values are not retained; consumers wanting version archaeology should
|
| 123 |
-
rebuild from USPTO dailies themselves.
|
| 124 |
-
- Owner names are **not normalized**; address country codes contain invalid
|
| 125 |
-
values — documented, not cleaned.
|
| 126 |
-
- Pre-1980s records are sparse/backfilled by USPTO.
|
| 127 |
-
- Every row carries `file_dt_source`/`file_name_source` lineage back to the
|
| 128 |
-
exact USPTO bulk file that produced it.
|
| 129 |
-
|
| 130 |
-
Built 2026-
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
license_name: us-government-work
|
| 4 |
+
license_link: https://www.usa.gov/government-works
|
| 5 |
+
pretty_name: USPTO Trademark Case Files (Silver)
|
| 6 |
+
tags:
|
| 7 |
+
- trademarks
|
| 8 |
+
- uspto
|
| 9 |
+
- legal
|
| 10 |
+
configs:
|
| 11 |
+
- config_name: case_file
|
| 12 |
+
data_files: data/case_file/*.parquet
|
| 13 |
+
- config_name: owner
|
| 14 |
+
data_files: data/owner/*.parquet
|
| 15 |
+
- config_name: classification
|
| 16 |
+
data_files: data/classification/*.parquet
|
| 17 |
+
- config_name: intl_class
|
| 18 |
+
data_files: data/intl_class/*.parquet
|
| 19 |
+
- config_name: us_class
|
| 20 |
+
data_files: data/us_class/*.parquet
|
| 21 |
+
- config_name: statement
|
| 22 |
+
data_files: data/statement/*.parquet
|
| 23 |
+
- config_name: event
|
| 24 |
+
data_files: data/event/*.parquet
|
| 25 |
+
- config_name: design_search
|
| 26 |
+
data_files: data/design_search/*.parquet
|
| 27 |
+
- config_name: prior_mark
|
| 28 |
+
data_files: data/prior_mark/*.parquet
|
| 29 |
+
- config_name: foreign_app
|
| 30 |
+
data_files: data/foreign_app/*.parquet
|
| 31 |
+
- config_name: madrid_intl_file
|
| 32 |
+
data_files: data/madrid_intl_file/*.parquet
|
| 33 |
+
- config_name: owner_name_change
|
| 34 |
+
data_files: data/owner_name_change/*.parquet
|
| 35 |
+
- config_name: correspondent
|
| 36 |
+
data_files: data/correspondent/*.parquet
|
| 37 |
+
- config_name: lookup_status_codes
|
| 38 |
+
data_files: lookups/status_codes.csv
|
| 39 |
+
- config_name: lookup_event_codes
|
| 40 |
+
data_files: lookups/event_codes.csv
|
| 41 |
+
- config_name: lookup_statement_types
|
| 42 |
+
data_files: lookups/statement_types.csv
|
| 43 |
+
- config_name: lookup_party_types
|
| 44 |
+
data_files: lookups/party_types.csv
|
| 45 |
+
- config_name: lookup_entity_codes
|
| 46 |
+
data_files: lookups/entity_codes.csv
|
| 47 |
+
- config_name: lookup_drawing_codes
|
| 48 |
+
data_files: lookups/drawing_codes.csv
|
| 49 |
+
---
|
| 50 |
+
|
| 51 |
+
# USPTO Trademark Case Files — analysis-ready Parquet
|
| 52 |
+
|
| 53 |
+
Complete USPTO trademark application/registration corpus, rebuilt from the
|
| 54 |
+
official bulk XML products and normalized into relational Parquet tables.
|
| 55 |
+
|
| 56 |
+
- **Sources:** USPTO Open Data Portal products **TRTYRAP** (Trademark Full
|
| 57 |
+
Text XML Data, No Images — Annual Applications; backfile from 1884) and
|
| 58 |
+
**TRTDXFAP** (same, Daily Applications), US Trademark Applications v2.0 DTD.
|
| 59 |
+
- **Data current through:** `2026-07-31` (annual snapshot cutoff
|
| 60 |
+
`2025-12-31` + daily replay).
|
| 61 |
+
- **License:** United States government work — public domain.
|
| 62 |
+
- **Schema lineage:** table/column names follow the USPTO Office of the Chief
|
| 63 |
+
Economist (OCE) Trademark Case Files Dataset conventions, so existing
|
| 64 |
+
research code ports directly. `correspondent` is an extension beyond OCE.
|
| 65 |
+
|
| 66 |
+
## Querying (DuckDB, no download needed)
|
| 67 |
+
|
| 68 |
+
```sql
|
| 69 |
+
SELECT filing_dt, mark_id_char
|
| 70 |
+
FROM 'hf://datasets/illeatmyhat/uspto-trademarks/data/case_file/*.parquet'
|
| 71 |
+
WHERE serial_no = '75930757';
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
+
## Tables
|
| 75 |
+
|
| 76 |
+
| table | rows | grain |
|
| 77 |
+
|---|---:|---|
|
| 78 |
+
| case_file | 14,231,512 | 1 per case file |
|
| 79 |
+
| owner | 32,586,229 | 1:M per serial_no |
|
| 80 |
+
| classification | 16,930,336 | 1:M per serial_no |
|
| 81 |
+
| intl_class | 17,097,070 | 1:M per serial_no |
|
| 82 |
+
| us_class | 60,645,837 | 1:M per serial_no |
|
| 83 |
+
| statement | 29,535,830 | 1:M per serial_no |
|
| 84 |
+
| event | 248,385,751 | 1:M per serial_no |
|
| 85 |
+
| design_search | 8,872,113 | 1:M per serial_no |
|
| 86 |
+
| prior_mark | 2,581,578 | 1:M per serial_no |
|
| 87 |
+
| foreign_app | 705,269 | 1:M per serial_no |
|
| 88 |
+
| madrid_intl_file | 199,578 | 1:M per serial_no |
|
| 89 |
+
| owner_name_change | 259,762 | 1:M per serial_no |
|
| 90 |
+
| correspondent | 12,810,651 | 1 per case file |
|
| 91 |
+
|
| 92 |
+
`serial_no` (8-char zero-padded string) joins everything. Row counts, per-column
|
| 93 |
+
null rates and build lineage are published under `profile/`. USPTO's code
|
| 94 |
+
tables (case status, prosecution-history event, statement type, party,
|
| 95 |
+
legal entity, mark drawing) ship under `lookups/`, with per-table source
|
| 96 |
+
URL and retrieval date in `lookups/_sources.json`.
|
| 97 |
+
|
| 98 |
+
## Research & reproducibility
|
| 99 |
+
|
| 100 |
+
This corpus was assembled to study, quantitatively, the well-documented
|
| 101 |
+
post-2015 surge in coined trademark filings tied to online-marketplace
|
| 102 |
+
brand-gating (e.g. Amazon Brand Registry) — the phenomenon that motivated the
|
| 103 |
+
Trademark Modernization Act of 2020. Dimensions of interest, all computable
|
| 104 |
+
directly from the tables above: filing volume by year, owner geography, and
|
| 105 |
+
marketplace-gated class (9/11/18/20/21/25/28); coined single-token marks;
|
| 106 |
+
attorney-of-record filing concentration; the marks-per-owner ratio that
|
| 107 |
+
distinguishes ongoing law practices from high-churn filing operations;
|
| 108 |
+
goods/services identification length; and correspondent-address-level
|
| 109 |
+
aggregation of filing operations.
|
| 110 |
+
|
| 111 |
+
A complete, runnable methodology — DuckDB queries plus a versioned scoring
|
| 112 |
+
module that composes these signals into a ranked table — is in the open-source
|
| 113 |
+
pipeline: **[docs/ANALYSIS.md](https://github.com/illeatmyhat/uspto-trademark-radar/blob/main/docs/ANALYSIS.md)**. Every
|
| 114 |
+
figure is a factual measurement of public records and reproducible in minutes.
|
| 115 |
+
Results are descriptive patterns, not determinations about any filer; see the
|
| 116 |
+
document's "Reading the results" note.
|
| 117 |
+
|
| 118 |
+
## Update semantics & limitations
|
| 119 |
+
|
| 120 |
+
- **Latest state only.** Each case file appears once, in its most recent
|
| 121 |
+
known state (annual baseline + daily replay, latest-wins). Superseded field
|
| 122 |
+
values are not retained; consumers wanting version archaeology should
|
| 123 |
+
rebuild from USPTO dailies themselves.
|
| 124 |
+
- Owner names are **not normalized**; address country codes contain invalid
|
| 125 |
+
values — documented, not cleaned.
|
| 126 |
+
- Pre-1980s records are sparse/backfilled by USPTO.
|
| 127 |
+
- Every row carries `file_dt_source`/`file_name_source` lineage back to the
|
| 128 |
+
exact USPTO bulk file that produced it.
|
| 129 |
+
|
| 130 |
+
Built 2026-08-02 by the [USPTO Trademark Radar pipeline](https://github.com/illeatmyhat/uspto-trademark-radar).
|
data/case_file/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:912c531a994656065d032e8902b37f5a1056a5f78fa9ee98e52308609efd9632
|
| 3 |
+
size 34205323
|
data/case_file/data_1.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:42a47d7bb95e6154520117e3c68a7517e964bd20eb64ed01e0e774dd595cf60b
|
| 3 |
+
size 340431792
|
data/classification/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2126c5f663f1146ce5fd8c08941df5c223e15df65a7ac0510070cc2ccb1adefd
|
| 3 |
+
size 145586306
|
data/correspondent/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b235a1f9ddabec38d3c6f55090dd9314a83fccb644a4766ce79869520e2b0045
|
| 3 |
+
size 300131983
|
data/design_search/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:160a36e25d897f84d5699969e2446c409ea11f732f6f9bf1777bb47952335a82
|
| 3 |
+
size 21672893
|
data/event/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3aa44e43633f051fa28d9a76ac188bff324e08bd86b57fe01176525666369702
|
| 3 |
+
size 384675810
|
data/event/data_1.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fe3d8ed97460bfef3382dacfe0500f2a8eaa27859788eb5c6d23c6bf4e135f7
|
| 3 |
+
size 367957293
|
data/event/data_2.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1fdb07274178be1c3dcffc0a589a84e5bcba4baf1bd764f0662c513a53dfb24
|
| 3 |
+
size 237927494
|
data/foreign_app/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fc4b9148c2a90ba032aa6b777d8f4ed805a2f7c123d65ce798ce00a0acece220
|
| 3 |
+
size 10289105
|
data/intl_class/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8305c7a816060759b28f6561e1edb387720c84d04f2e3869e97075b3e6f3e2dd
|
| 3 |
+
size 40658826
|
data/madrid_intl_file/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f31934f1ef220452e3107e1eda8473bf48f7a5e3cf8a0fc677f2638f63b7551
|
| 3 |
+
size 4022595
|
data/owner/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63965c6178467afc6d059a2bdcbd3dbaba23dc9b62415f5147a33b2c751c3531
|
| 3 |
+
size 268285245
|
data/owner/data_1.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c86f33052cb13cd22fef2bbfc8619f2bbe741fc3d112a4f344fac82b6a637df
|
| 3 |
+
size 348386300
|
data/owner/data_2.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f2a53b2a6eabe540c0e664f62a19dc07d7fceeaec337462660b5006a1120ab78
|
| 3 |
+
size 49318830
|
data/owner_name_change/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5dd3f27e26ff701cd3d9bd8048abc6f52b16324ddd916361ccdcd620412154be
|
| 3 |
+
size 1047802
|
data/prior_mark/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1d041117d42d239f5a99807e3d32236f52053b990b4b90878bed8da05ba2f9c2
|
| 3 |
+
size 12689136
|
data/statement/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90134b3ad7ba29116004c2c0f5bca9392f4763c1985d8e80982c49bdc5700425
|
| 3 |
+
size 319433104
|
data/statement/data_1.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4443fcd02621eba3878faa735f7922bca5559c9c4061de19b4db4dd1902b4f41
|
| 3 |
+
size 368475710
|
data/statement/data_2.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46f9fb9333512d58d67d0ac0c6b123ad12c61c4b7ab7772253660b41dd2fc735
|
| 3 |
+
size 413979037
|
data/statement/data_3.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eca49da4ab1039488d7eb053dc9054877a0763f11a04351459311146c17df2b0
|
| 3 |
+
size 255762942
|
data/us_class/data_0.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92fd378fbc51ebd138fb20f0e0204b3e2678b3e40c66c5f0331b59c9d75ad881
|
| 3 |
+
size 106200645
|
profile/build_lineage.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
-
"build_id": "build-
|
| 3 |
"parser_version": "1",
|
| 4 |
"annual_cutoff": "2025-12-31",
|
| 5 |
-
"data_current_through": "2026-07-
|
| 6 |
"inputs": [
|
| 7 |
"apc18840407-20251231-01.zip",
|
| 8 |
"apc18840407-20251231-02.zip",
|
|
@@ -281,22 +281,47 @@
|
|
| 281 |
"apc260703.zip",
|
| 282 |
"apc260704.zip",
|
| 283 |
"apc260705.zip",
|
| 284 |
-
"apc260706.zip"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 285 |
],
|
| 286 |
-
"built_at": "2026-
|
| 287 |
"row_counts": {
|
| 288 |
-
"case_file":
|
| 289 |
-
"owner":
|
| 290 |
-
"classification":
|
| 291 |
-
"intl_class":
|
| 292 |
-
"us_class":
|
| 293 |
-
"statement":
|
| 294 |
-
"event":
|
| 295 |
-
"design_search":
|
| 296 |
-
"prior_mark":
|
| 297 |
-
"foreign_app":
|
| 298 |
-
"madrid_intl_file":
|
| 299 |
-
"owner_name_change":
|
| 300 |
-
"correspondent":
|
| 301 |
}
|
| 302 |
}
|
|
|
|
| 1 |
{
|
| 2 |
+
"build_id": "build-20260802-065910",
|
| 3 |
"parser_version": "1",
|
| 4 |
"annual_cutoff": "2025-12-31",
|
| 5 |
+
"data_current_through": "2026-07-31",
|
| 6 |
"inputs": [
|
| 7 |
"apc18840407-20251231-01.zip",
|
| 8 |
"apc18840407-20251231-02.zip",
|
|
|
|
| 281 |
"apc260703.zip",
|
| 282 |
"apc260704.zip",
|
| 283 |
"apc260705.zip",
|
| 284 |
+
"apc260706.zip",
|
| 285 |
+
"apc260707.zip",
|
| 286 |
+
"apc260708.zip",
|
| 287 |
+
"apc260709.zip",
|
| 288 |
+
"apc260710.zip",
|
| 289 |
+
"apc260711.zip",
|
| 290 |
+
"apc260712.zip",
|
| 291 |
+
"apc260713.zip",
|
| 292 |
+
"apc260714.zip",
|
| 293 |
+
"apc260715.zip",
|
| 294 |
+
"apc260716.zip",
|
| 295 |
+
"apc260717.zip",
|
| 296 |
+
"apc260718.zip",
|
| 297 |
+
"apc260719.zip",
|
| 298 |
+
"apc260720.zip",
|
| 299 |
+
"apc260721.zip",
|
| 300 |
+
"apc260722.zip",
|
| 301 |
+
"apc260723.zip",
|
| 302 |
+
"apc260724.zip",
|
| 303 |
+
"apc260725.zip",
|
| 304 |
+
"apc260726.zip",
|
| 305 |
+
"apc260727.zip",
|
| 306 |
+
"apc260728.zip",
|
| 307 |
+
"apc260729.zip",
|
| 308 |
+
"apc260730.zip",
|
| 309 |
+
"apc260731.zip"
|
| 310 |
],
|
| 311 |
+
"built_at": "2026-08-02T07:00:30+00:00",
|
| 312 |
"row_counts": {
|
| 313 |
+
"case_file": 14231512,
|
| 314 |
+
"owner": 32586229,
|
| 315 |
+
"classification": 16930336,
|
| 316 |
+
"intl_class": 17097070,
|
| 317 |
+
"us_class": 60645837,
|
| 318 |
+
"statement": 29535830,
|
| 319 |
+
"event": 248385751,
|
| 320 |
+
"design_search": 8872113,
|
| 321 |
+
"prior_mark": 2581578,
|
| 322 |
+
"foreign_app": 705269,
|
| 323 |
+
"madrid_intl_file": 199578,
|
| 324 |
+
"owner_name_change": 259762,
|
| 325 |
+
"correspondent": 12810651
|
| 326 |
}
|
| 327 |
}
|
profile/date_outliers.csv
CHANGED
|
@@ -6,12 +6,12 @@ case_file,status_dt,24,1,current_date
|
|
| 6 |
case_file,amend_reg_dt,10,9,current_date
|
| 7 |
case_file,ir_status_dt,0,1,current_date
|
| 8 |
classification,class_status_dt,0,15,current_date
|
| 9 |
-
classification,use_first_anywhere_dt,
|
| 10 |
-
classification,use_first_commerce_dt,
|
| 11 |
-
event,event_dt,1,
|
| 12 |
foreign_app,for_app_dt,2,4,current_date
|
| 13 |
-
foreign_app,for_reg_dt,11,
|
| 14 |
-
foreign_app,for_reg_exp_dt,4,
|
| 15 |
foreign_app,for_renewal_dt,2,7,current_date + INTERVAL 40 YEAR
|
| 16 |
foreign_app,for_renewal_exp_dt,0,3,current_date + INTERVAL 40 YEAR
|
| 17 |
madrid_intl_file,madrid_status_dt,0,9,current_date
|
|
|
|
| 6 |
case_file,amend_reg_dt,10,9,current_date
|
| 7 |
case_file,ir_status_dt,0,1,current_date
|
| 8 |
classification,class_status_dt,0,15,current_date
|
| 9 |
+
classification,use_first_anywhere_dt,1438,85,current_date
|
| 10 |
+
classification,use_first_commerce_dt,994,94,current_date
|
| 11 |
+
event,event_dt,1,6,current_date
|
| 12 |
foreign_app,for_app_dt,2,4,current_date
|
| 13 |
+
foreign_app,for_reg_dt,11,21,current_date
|
| 14 |
+
foreign_app,for_reg_exp_dt,4,89,current_date + INTERVAL 40 YEAR
|
| 15 |
foreign_app,for_renewal_dt,2,7,current_date + INTERVAL 40 YEAR
|
| 16 |
foreign_app,for_renewal_exp_dt,0,3,current_date + INTERVAL 40 YEAR
|
| 17 |
madrid_intl_file,madrid_status_dt,0,9,current_date
|
profile/null_rates.csv
CHANGED
|
@@ -1,27 +1,27 @@
|
|
| 1 |
table,column,null_rate
|
| 2 |
case_file,serial_no,0.0
|
| 3 |
-
case_file,registration_no,0.
|
| 4 |
-
case_file,mark_id_char,0.
|
| 5 |
-
case_file,filing_dt,0.
|
| 6 |
-
case_file,registration_dt,0.
|
| 7 |
-
case_file,publication_dt,0.
|
| 8 |
-
case_file,abandon_dt,0.
|
| 9 |
-
case_file,cancel_cd,0.
|
| 10 |
-
case_file,cancel_dt,0.
|
| 11 |
case_file,cancel_pend_in,0.0
|
| 12 |
-
case_file,renewal_dt,0.
|
| 13 |
case_file,renewal_file_in,0.0
|
| 14 |
case_file,status_cd,0.0
|
| 15 |
case_file,status_dt,0.0
|
| 16 |
case_file,mark_draw_cd,0.0
|
| 17 |
case_file,std_char_claimed_in,0.0
|
| 18 |
-
case_file,attorney_name,0.
|
| 19 |
-
case_file,atty_dkt_no,0.
|
| 20 |
-
case_file,domestic_rep_name,0.
|
| 21 |
-
case_file,exm_name,0.
|
| 22 |
-
case_file,exm_office_cd,0.
|
| 23 |
-
case_file,file_location,0.
|
| 24 |
-
case_file,file_location_dt,0.
|
| 25 |
case_file,use_af_in,4.1e-05
|
| 26 |
case_file,use_intent_in,4.1e-05
|
| 27 |
case_file,for_app_in,4.4e-05
|
|
@@ -34,7 +34,7 @@ case_file,for_app_file_in,4.4e-05
|
|
| 34 |
case_file,for_reg_file_in,4.1e-05
|
| 35 |
case_file,intl_reg_file_in,4.1e-05
|
| 36 |
case_file,no_basis_file_in,4.1e-05
|
| 37 |
-
case_file,amend_reg_dt,0.
|
| 38 |
case_file,amend_lb_use_in,4.1e-05
|
| 39 |
case_file,amend_lb_itu_in,4.1e-05
|
| 40 |
case_file,amend_lb_for_app_in,4.4e-05
|
|
@@ -55,23 +55,23 @@ case_file,incontest_ack_in,0.0
|
|
| 55 |
case_file,acq_dist_in,0.0
|
| 56 |
case_file,acq_dist_part_in,0.0
|
| 57 |
case_file,repub_12c_in,0.0
|
| 58 |
-
case_file,repub_12c_dt,0.
|
| 59 |
case_file,draw_color_file_in,0.0
|
| 60 |
case_file,draw_color_cur_in,0.0
|
| 61 |
case_file,draw_3d_file_in,0.0
|
| 62 |
case_file,draw_3d_cur_in,0.0
|
| 63 |
case_file,for_priority_in,0.0
|
| 64 |
-
case_file,ir_no,0.
|
| 65 |
-
case_file,ir_registration_dt,0.
|
| 66 |
-
case_file,ir_publication_dt,0.
|
| 67 |
-
case_file,ir_renewal_dt,0.
|
| 68 |
-
case_file,ir_death_dt,0.
|
| 69 |
-
case_file,ir_status_cd,0.
|
| 70 |
-
case_file,ir_status_dt,0.
|
| 71 |
-
case_file,ir_auto_reg_dt,0.
|
| 72 |
-
case_file,ir_first_refus_in,0.
|
| 73 |
-
case_file,ir_priority_in,0.
|
| 74 |
-
case_file,ir_priority_dt,0.
|
| 75 |
case_file,supp_reg_in,0.0
|
| 76 |
case_file,certification_in,0.0
|
| 77 |
case_file,collective_in,0.0
|
|
@@ -79,40 +79,40 @@ case_file,coll_serv_mark_in,0.0
|
|
| 79 |
case_file,coll_trade_mark_in,0.0
|
| 80 |
case_file,service_in,0.0
|
| 81 |
case_file,trade_in,0.0
|
| 82 |
-
case_file,related_other_in,0.
|
| 83 |
case_file,file_dt_source,0.0
|
| 84 |
case_file,file_name_source,0.0
|
| 85 |
owner,serial_no,0.0
|
| 86 |
owner,own_seq,0.0
|
| 87 |
owner,own_type_cd,0.0
|
| 88 |
owner,own_name,0.0
|
| 89 |
-
owner,own_altn_name,0.
|
| 90 |
owner,own_entity_cd,0.0
|
| 91 |
owner,own_entity_desc,1.0
|
| 92 |
-
owner,own_composed_of,0.
|
| 93 |
-
owner,own_addr_1,0.
|
| 94 |
-
owner,own_addr_2,0.
|
| 95 |
-
owner,own_addr_city,0.
|
| 96 |
-
owner,own_addr_state_cd,0.
|
| 97 |
-
owner,own_addr_postal,0.
|
| 98 |
-
owner,own_addr_country_cd,0.
|
| 99 |
-
owner,own_addr_other_cd,0.
|
| 100 |
-
owner,own_nalty_country_cd,0.
|
| 101 |
-
owner,own_nalty_state_cd,0.
|
| 102 |
-
owner,own_nalty_other_cd,0.
|
| 103 |
owner,file_dt_source,0.0
|
| 104 |
owner,file_name_source,0.0
|
| 105 |
classification,serial_no,0.0
|
| 106 |
classification,class_seq,0.0
|
| 107 |
classification,primary_cd,0.0
|
| 108 |
classification,class_status_cd,1e-06
|
| 109 |
-
classification,class_status_dt,0.
|
| 110 |
classification,class_intl_count,0.0
|
| 111 |
classification,class_us_count,0.0
|
| 112 |
-
classification,use_first_anywhere_dt,0.
|
| 113 |
-
classification,use_first_commerce_dt,0.
|
| 114 |
-
classification,use_first_anywhere_raw,0.
|
| 115 |
-
classification,use_first_commerce_raw,0.
|
| 116 |
classification,file_dt_source,0.0
|
| 117 |
classification,file_name_source,0.0
|
| 118 |
intl_class,serial_no,0.0
|
|
@@ -133,8 +133,8 @@ statement,file_dt_source,0.0
|
|
| 133 |
statement,file_name_source,0.0
|
| 134 |
event,serial_no,0.0
|
| 135 |
event,event_seq,0.0
|
| 136 |
-
event,event_cd,4.
|
| 137 |
-
event,event_type_cd,4.
|
| 138 |
event,event_dt,0.0
|
| 139 |
event,file_dt_source,0.0
|
| 140 |
event,file_name_source,0.0
|
|
@@ -143,22 +143,22 @@ design_search,design_search_cd,0.0
|
|
| 143 |
design_search,file_dt_source,0.0
|
| 144 |
design_search,file_name_source,0.0
|
| 145 |
prior_mark,serial_no,0.0
|
| 146 |
-
prior_mark,prior_no,
|
| 147 |
prior_mark,prior_type_cd,0.0
|
| 148 |
prior_mark,file_dt_source,0.0
|
| 149 |
prior_mark,file_name_source,0.0
|
| 150 |
foreign_app,serial_no,0.0
|
| 151 |
foreign_app,foreign_seq,0.0
|
| 152 |
-
foreign_app,for_country_cd,0.
|
| 153 |
foreign_app,for_other,1.0
|
| 154 |
-
foreign_app,for_app_no,0.
|
| 155 |
-
foreign_app,for_app_dt,0.
|
| 156 |
-
foreign_app,for_reg_no,0.
|
| 157 |
-
foreign_app,for_reg_dt,0.
|
| 158 |
-
foreign_app,for_reg_exp_dt,0.
|
| 159 |
-
foreign_app,for_renewal_no,0.
|
| 160 |
-
foreign_app,for_renewal_dt,0.
|
| 161 |
-
foreign_app,for_renewal_exp_dt,0.
|
| 162 |
foreign_app,for_priority_claim_in,0.0
|
| 163 |
foreign_app,file_dt_source,0.0
|
| 164 |
foreign_app,file_name_source,0.0
|
|
@@ -166,12 +166,12 @@ madrid_intl_file,serial_no,0.0
|
|
| 166 |
madrid_intl_file,madrid_seq,0.0
|
| 167 |
madrid_intl_file,madrid_ref_no,0.0
|
| 168 |
madrid_intl_file,madrid_orig_filing_dt,0.0
|
| 169 |
-
madrid_intl_file,ir_no,0.
|
| 170 |
-
madrid_intl_file,ir_dt,0.
|
| 171 |
madrid_intl_file,madrid_status_cd,2.5e-05
|
| 172 |
madrid_intl_file,madrid_status_dt,2.5e-05
|
| 173 |
-
madrid_intl_file,irregularity_reply_by_dt,0.
|
| 174 |
-
madrid_intl_file,ir_renewal_dt,0.
|
| 175 |
madrid_intl_file,file_dt_source,0.0
|
| 176 |
madrid_intl_file,file_name_source,0.0
|
| 177 |
owner_name_change,serial_no,0.0
|
|
@@ -182,8 +182,8 @@ owner_name_change,file_name_source,0.0
|
|
| 182 |
correspondent,serial_no,0.0
|
| 183 |
correspondent,cor_addr_1,2e-06
|
| 184 |
correspondent,cor_addr_2,1.9e-05
|
| 185 |
-
correspondent,cor_addr_3,0.
|
| 186 |
-
correspondent,cor_addr_4,0.
|
| 187 |
-
correspondent,cor_addr_5,0.
|
| 188 |
correspondent,file_dt_source,0.0
|
| 189 |
correspondent,file_name_source,0.0
|
|
|
|
| 1 |
table,column,null_rate
|
| 2 |
case_file,serial_no,0.0
|
| 3 |
+
case_file,registration_no,0.419711
|
| 4 |
+
case_file,mark_id_char,0.105693
|
| 5 |
+
case_file,filing_dt,0.081158
|
| 6 |
+
case_file,registration_dt,0.420716
|
| 7 |
+
case_file,publication_dt,0.340418
|
| 8 |
+
case_file,abandon_dt,0.676577
|
| 9 |
+
case_file,cancel_cd,0.739408
|
| 10 |
+
case_file,cancel_dt,0.744579
|
| 11 |
case_file,cancel_pend_in,0.0
|
| 12 |
+
case_file,renewal_dt,0.909605
|
| 13 |
case_file,renewal_file_in,0.0
|
| 14 |
case_file,status_cd,0.0
|
| 15 |
case_file,status_dt,0.0
|
| 16 |
case_file,mark_draw_cd,0.0
|
| 17 |
case_file,std_char_claimed_in,0.0
|
| 18 |
+
case_file,attorney_name,0.333093
|
| 19 |
+
case_file,atty_dkt_no,0.598639
|
| 20 |
+
case_file,domestic_rep_name,0.929464
|
| 21 |
+
case_file,exm_name,0.156315
|
| 22 |
+
case_file,exm_office_cd,0.140088
|
| 23 |
+
case_file,file_location,0.073336
|
| 24 |
+
case_file,file_location_dt,0.089092
|
| 25 |
case_file,use_af_in,4.1e-05
|
| 26 |
case_file,use_intent_in,4.1e-05
|
| 27 |
case_file,for_app_in,4.4e-05
|
|
|
|
| 34 |
case_file,for_reg_file_in,4.1e-05
|
| 35 |
case_file,intl_reg_file_in,4.1e-05
|
| 36 |
case_file,no_basis_file_in,4.1e-05
|
| 37 |
+
case_file,amend_reg_dt,0.978075
|
| 38 |
case_file,amend_lb_use_in,4.1e-05
|
| 39 |
case_file,amend_lb_itu_in,4.1e-05
|
| 40 |
case_file,amend_lb_for_app_in,4.4e-05
|
|
|
|
| 55 |
case_file,acq_dist_in,0.0
|
| 56 |
case_file,acq_dist_part_in,0.0
|
| 57 |
case_file,repub_12c_in,0.0
|
| 58 |
+
case_file,repub_12c_dt,0.998657
|
| 59 |
case_file,draw_color_file_in,0.0
|
| 60 |
case_file,draw_color_cur_in,0.0
|
| 61 |
case_file,draw_3d_file_in,0.0
|
| 62 |
case_file,draw_3d_cur_in,0.0
|
| 63 |
case_file,for_priority_in,0.0
|
| 64 |
+
case_file,ir_no,0.96811
|
| 65 |
+
case_file,ir_registration_dt,0.96811
|
| 66 |
+
case_file,ir_publication_dt,0.96811
|
| 67 |
+
case_file,ir_renewal_dt,0.96811
|
| 68 |
+
case_file,ir_death_dt,0.990122
|
| 69 |
+
case_file,ir_status_cd,0.96811
|
| 70 |
+
case_file,ir_status_dt,0.96811
|
| 71 |
+
case_file,ir_auto_reg_dt,0.968111
|
| 72 |
+
case_file,ir_first_refus_in,0.96811
|
| 73 |
+
case_file,ir_priority_in,0.96811
|
| 74 |
+
case_file,ir_priority_dt,0.980937
|
| 75 |
case_file,supp_reg_in,0.0
|
| 76 |
case_file,certification_in,0.0
|
| 77 |
case_file,collective_in,0.0
|
|
|
|
| 79 |
case_file,coll_trade_mark_in,0.0
|
| 80 |
case_file,service_in,0.0
|
| 81 |
case_file,trade_in,0.0
|
| 82 |
+
case_file,related_other_in,0.911638
|
| 83 |
case_file,file_dt_source,0.0
|
| 84 |
case_file,file_name_source,0.0
|
| 85 |
owner,serial_no,0.0
|
| 86 |
owner,own_seq,0.0
|
| 87 |
owner,own_type_cd,0.0
|
| 88 |
owner,own_name,0.0
|
| 89 |
+
owner,own_altn_name,0.944226
|
| 90 |
owner,own_entity_cd,0.0
|
| 91 |
owner,own_entity_desc,1.0
|
| 92 |
+
owner,own_composed_of,0.978774
|
| 93 |
+
owner,own_addr_1,0.117746
|
| 94 |
+
owner,own_addr_2,0.63042
|
| 95 |
+
owner,own_addr_city,0.033143
|
| 96 |
+
owner,own_addr_state_cd,0.248111
|
| 97 |
+
owner,own_addr_postal,0.090523
|
| 98 |
+
owner,own_addr_country_cd,0.020239
|
| 99 |
+
owner,own_addr_other_cd,0.999587
|
| 100 |
+
owner,own_nalty_country_cd,0.020159
|
| 101 |
+
owner,own_nalty_state_cd,0.376315
|
| 102 |
+
owner,own_nalty_other_cd,0.999963
|
| 103 |
owner,file_dt_source,0.0
|
| 104 |
owner,file_name_source,0.0
|
| 105 |
classification,serial_no,0.0
|
| 106 |
classification,class_seq,0.0
|
| 107 |
classification,primary_cd,0.0
|
| 108 |
classification,class_status_cd,1e-06
|
| 109 |
+
classification,class_status_dt,0.000882
|
| 110 |
classification,class_intl_count,0.0
|
| 111 |
classification,class_us_count,0.0
|
| 112 |
+
classification,use_first_anywhere_dt,0.488993
|
| 113 |
+
classification,use_first_commerce_dt,0.4871
|
| 114 |
+
classification,use_first_anywhere_raw,0.395813
|
| 115 |
+
classification,use_first_commerce_raw,0.395794
|
| 116 |
classification,file_dt_source,0.0
|
| 117 |
classification,file_name_source,0.0
|
| 118 |
intl_class,serial_no,0.0
|
|
|
|
| 133 |
statement,file_name_source,0.0
|
| 134 |
event,serial_no,0.0
|
| 135 |
event,event_seq,0.0
|
| 136 |
+
event,event_cd,4.2e-05
|
| 137 |
+
event,event_type_cd,4.2e-05
|
| 138 |
event,event_dt,0.0
|
| 139 |
event,file_dt_source,0.0
|
| 140 |
event,file_name_source,0.0
|
|
|
|
| 143 |
design_search,file_dt_source,0.0
|
| 144 |
design_search,file_name_source,0.0
|
| 145 |
prior_mark,serial_no,0.0
|
| 146 |
+
prior_mark,prior_no,2e-06
|
| 147 |
prior_mark,prior_type_cd,0.0
|
| 148 |
prior_mark,file_dt_source,0.0
|
| 149 |
prior_mark,file_name_source,0.0
|
| 150 |
foreign_app,serial_no,0.0
|
| 151 |
foreign_app,foreign_seq,0.0
|
| 152 |
+
foreign_app,for_country_cd,0.004844
|
| 153 |
foreign_app,for_other,1.0
|
| 154 |
+
foreign_app,for_app_no,0.400466
|
| 155 |
+
foreign_app,for_app_dt,0.396752
|
| 156 |
+
foreign_app,for_reg_no,0.2236
|
| 157 |
+
foreign_app,for_reg_dt,0.226433
|
| 158 |
+
foreign_app,for_reg_exp_dt,0.271601
|
| 159 |
+
foreign_app,for_renewal_no,0.990082
|
| 160 |
+
foreign_app,for_renewal_dt,0.942418
|
| 161 |
+
foreign_app,for_renewal_exp_dt,0.987955
|
| 162 |
foreign_app,for_priority_claim_in,0.0
|
| 163 |
foreign_app,file_dt_source,0.0
|
| 164 |
foreign_app,file_name_source,0.0
|
|
|
|
| 166 |
madrid_intl_file,madrid_seq,0.0
|
| 167 |
madrid_intl_file,madrid_ref_no,0.0
|
| 168 |
madrid_intl_file,madrid_orig_filing_dt,0.0
|
| 169 |
+
madrid_intl_file,ir_no,0.058804
|
| 170 |
+
madrid_intl_file,ir_dt,0.058804
|
| 171 |
madrid_intl_file,madrid_status_cd,2.5e-05
|
| 172 |
madrid_intl_file,madrid_status_dt,2.5e-05
|
| 173 |
+
madrid_intl_file,irregularity_reply_by_dt,0.943872
|
| 174 |
+
madrid_intl_file,ir_renewal_dt,0.050687
|
| 175 |
madrid_intl_file,file_dt_source,0.0
|
| 176 |
madrid_intl_file,file_name_source,0.0
|
| 177 |
owner_name_change,serial_no,0.0
|
|
|
|
| 182 |
correspondent,serial_no,0.0
|
| 183 |
correspondent,cor_addr_1,2e-06
|
| 184 |
correspondent,cor_addr_2,1.9e-05
|
| 185 |
+
correspondent,cor_addr_3,0.000241
|
| 186 |
+
correspondent,cor_addr_4,0.001461
|
| 187 |
+
correspondent,cor_addr_5,0.7539
|
| 188 |
correspondent,file_dt_source,0.0
|
| 189 |
correspondent,file_name_source,0.0
|
profile/row_counts.csv
CHANGED
|
@@ -1,14 +1,14 @@
|
|
| 1 |
table,rows
|
| 2 |
-
case_file,
|
| 3 |
-
owner,
|
| 4 |
-
classification,
|
| 5 |
-
intl_class,
|
| 6 |
-
us_class,
|
| 7 |
-
statement,
|
| 8 |
-
event,
|
| 9 |
-
design_search,
|
| 10 |
-
prior_mark,
|
| 11 |
-
foreign_app,
|
| 12 |
-
madrid_intl_file,
|
| 13 |
-
owner_name_change,
|
| 14 |
-
correspondent,
|
|
|
|
| 1 |
table,rows
|
| 2 |
+
case_file,14231512
|
| 3 |
+
owner,32586229
|
| 4 |
+
classification,16930336
|
| 5 |
+
intl_class,17097070
|
| 6 |
+
us_class,60645837
|
| 7 |
+
statement,29535830
|
| 8 |
+
event,248385751
|
| 9 |
+
design_search,8872113
|
| 10 |
+
prior_mark,2581578
|
| 11 |
+
foreign_app,705269
|
| 12 |
+
madrid_intl_file,199578
|
| 13 |
+
owner_name_change,259762
|
| 14 |
+
correspondent,12810651
|