Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jdddog committed May 30, 2023
1 parent c4d368b commit f75d0ec
Show file tree
Hide file tree
Showing 10 changed files with 752 additions and 123 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,26 @@
{
"fields": [
{
"fields": [
{
"mode": "REPEATED",
"name": "parent",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "name",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "funder",
"type": "STRING"
}
],
"mode": "REPEATED",
"name": "parent",
"type": "STRING"
"type": "RECORD"
},
{
"mode": "NULLABLE",
Expand Down Expand Up @@ -111,9 +128,26 @@
{
"fields": [
{
"fields": [
{
"mode": "REPEATED",
"name": "children",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "name",
"type": "STRING"
},
{
"mode": "NULLABLE",
"name": "funder",
"type": "STRING"
}
],
"mode": "REPEATED",
"name": "children",
"type": "STRING"
"type": "RECORD"
},
{
"mode": "NULLABLE",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
"mode": "NULLABLE",
"description": "The total number Works that cite a work this author has created."
},
{
"name": "oa_works_count",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "works_count",
"type": "INTEGER",
Expand Down Expand Up @@ -154,23 +160,65 @@
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "2yr_cited_by_count",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "2yr_h_index",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "2yr_i10_index",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "2yr_mean_citedness",
"type": "FLOAT",
"mode": "NULLABLE",
"description": "The 2-year mean citedness for this author. Also known as impact factor."
"description": ""
},
{
"name": "2yr_works_count",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "cited_by_count",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "h_index",
"type": "INTEGER",
"mode": "NULLABLE",
"description": "The h-index for this author."
"description": ""
},
{
"name": "i10_index",
"type": "INTEGER",
"mode": "NULLABLE",
"description": "The i-10 index for this author."
"description": ""
},
{
"name": "oa_percent",
"type": "FLOAT",
"mode": "NULLABLE",
"description": ""
},
{
"name": "works_count",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
}
],
"description": "Citation metrics for this author."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@
"mode": "NULLABLE",
"description": "The number citations to works that have been tagged with this concept. Or less formally: the number of citations to this concept. For example, if there are just two works tagged with this concept and one of them has been cited 10 times, and the other has been cited 1 time, cited_by_count for this concept would be 11."
},
{
"name": "oa_works_count",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "works_count",
"type": "INTEGER",
Expand Down Expand Up @@ -238,23 +244,65 @@
"type": "RECORD",
"mode": "NULLABLE",
"fields": [
{
"name": "2yr_cited_by_count",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "2yr_h_index",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "2yr_i10_index",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "2yr_mean_citedness",
"type": "FLOAT",
"mode": "NULLABLE",
"description": "The 2-year mean citedness for this concept. Also known as impact factor."
"description": ""
},
{
"name": "2yr_works_count",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "cited_by_count",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
},
{
"name": "h_index",
"type": "INTEGER",
"mode": "NULLABLE",
"description": "The h-index for this concept."
"description": ""
},
{
"name": "i10_index",
"type": "INTEGER",
"mode": "NULLABLE",
"description": "The i-10 index for this concept."
"description": ""
},
{
"name": "oa_percent",
"type": "FLOAT",
"mode": "NULLABLE",
"description": ""
},
{
"name": "works_count",
"type": "INTEGER",
"mode": "NULLABLE",
"description": ""
}
],
"description": "Citation metrics for this concept."
Expand Down
Loading

0 comments on commit f75d0ec

Please sign in to comment.