AuthorStats Collection

Type: array

Array of AuthorStats records. Each element: Per-author artifact statistics including badge counts, paper breakdowns, and conference history.

No Additional Items

Each item of this array must be:

Type: object

Per-author artifact statistics including badge counts, paper breakdowns, and conference history.

No Additional Properties

name Required

Type: string

Full name in DBLP format, e.g. 'Mathias Payer' or 'Jing Liu 0074' (with disambiguation suffix).


Example:

"Mathias Payer"

affiliation Required

Type: string

Normalized institution affiliation, e.g. 'EPFL', 'MIT'. Empty string if unknown.


Example:

"ETH Zurich"
Type: array

Papers by this author that have evaluated artifacts, with badge and citation details.

No Additional Items

Each item of this array must be:

Type: object

A paper that has an associated artifact evaluation.

No Additional Properties

title Required

Type: string

Full paper title as it appears in the proceedings.


Example:

"Understanding and Detecting Software Upgrade Failures in Distributed Systems"

conference Required

Type: string

Conference abbreviation, e.g. 'OSDI', 'USENIXSEC'.


Example:

"OSDI"

year Required

Type: integer

Publication year, e.g. 2023.


Example:

2023

badges Required

Type: array of string

Artifact evaluation badges awarded by the AE committee. Canonical lowercase values: 'available', 'functional', 'reproduced', 'reusable', 'replicated'.

No Additional Items

Each item of this array must be:

Type: string

Example:

[
    "available",
    "functional",
    "reproduced"
]

category Required

Type: enum (of string)

Research domain: 'systems' or 'security', determined by the conference.

Must be one of:

  • "systems"
  • "security"
Type: integer

Number of times this artifact has been cited (via DOI tracking). 0 if not yet tracked.

Value must be greater or equal to 0


Example:

3
Type: array

Papers by this author at tracked conferences that do not have evaluated artifacts.

No Additional Items

Each item of this array must be:

Type: object

A published paper without an artifact evaluation.

No Additional Properties

title Required

Type: string

Full paper title as it appears in the proceedings.


Example:

"Understanding and Detecting Software Upgrade Failures in Distributed Systems"

conference Required

Type: string

Conference abbreviation, e.g. 'OSDI', 'USENIXSEC'.


Example:

"OSDI"

year Required

Type: integer

Publication year, e.g. 2023.


Example:

2023

conferences Required

Type: array of string

Conference abbreviations where author has published, e.g. ['OSDI', 'USENIXSEC'].

No Additional Items

Each item of this array must be:

Type: string

Example:

[
    "OSDI",
    "ATC",
    "USENIXSEC"
]

years Required

Type: array of integer

Sorted list of years with activity, e.g. [2020, 2021, 2023].

No Additional Items

Each item of this array must be:

Type: integer

Example:

[
    2021,
    2022,
    2023
]

artifact_count Required

Type: integer

Total number of artifacts authored across all conferences.

Value must be greater or equal to 0


Example:

5

total_papers Required

Type: integer

Total papers published at tracked conferences (both with and without artifacts).

Value must be greater or equal to 0


Example:

42

artifact_pct Required

Type: number

Percentage of papers with artifacts: (artifactcount / totalpapers) * 100.

Value must be greater or equal to 0 and lesser or equal to 100


Example:

71.4
Type: integer

Sum of citation counts across all this author's artifacts.

Value must be greater or equal to 0


Example:

3

badges_available Required

Type: integer

Total number of 'available' badges across all this author's artifacts.

Value must be greater or equal to 0


Example:

12
Type: integer

Total number of 'functional' badges across all this author's artifacts.

Value must be greater or equal to 0


Example:

10
Type: integer

Total number of 'reproduced' badges across all this author's artifacts.

Value must be greater or equal to 0


Example:

8

category Required

Type: enum (of string)

Research domain: 'systems', 'security', 'both', or 'unknown' (if no publications yet).

Must be one of:

  • "systems"
  • "security"
  • "both"
  • "unknown"
Default: null

Stable integer ID referencing the canonical author_index. Null for authors not yet indexed.

Option 1

Type: integer

Value must be greater or equal to 1

Option 2

Type: null

Example:

42

display_name Required

Type: string

Human-readable name without DBLP disambiguation suffix, e.g. 'Mathias Payer'.


Example:

"Mathias Payer"
Type: object

Conference name → paper count, e.g. {'OSDI': 3, 'USENIXSEC': 5}.

Each additional property must conform to the following schema

Type: integer
Type: object

Nested mapping: conference → year → count, e.g. {'OSDI': {'2023': 2}}.

Each additional property must conform to the following schema

Type: object

Each additional property must conform to the following schema

Type: integer

repro_pct Required

Type: number

Percentage of artifacts with a 'reproduced' badge: (reproduced / artifact_count) * 100.

Value must be greater or equal to 0 and lesser or equal to 100


Example:

66.7

functional_pct Required

Type: number

Percentage of artifacts with a 'functional' badge: (functional / artifact_count) * 100.

Value must be greater or equal to 0 and lesser or equal to 100


Example:

83.3

year_range Required

Type: string

Activity range as 'YYYY-YYYY', e.g. '2019-2024'.

Must match regular expression: ^\d{4}-\d{4}$
Example:

"2017-2026"

recent_count Required

Type: integer

Number of papers published in the most recent 3 calendar years.

Value must be greater or equal to 0


Example:

3
Type: array of integer

List of stable paper IDs (from paper_index) for this author's artifact papers.

No Additional Items

Each item of this array must be:

Type: integer

Example:

[
    1,
    42,
    137
]
Type: array of integer

List of stable paper IDs (from paper_index) for this author's non-artifact papers.

No Additional Items

Each item of this array must be:

Type: integer

Example:

[
    5,
    88
]