ParticipationStats

Type: object

Artifact evaluation participation rates per conference-year, with area-level trends over time.

No Additional Properties

by_conference_year Required

Type: array

Per-conference-year breakdown with paper counts and badge statistics.

No Additional Items

Each item of this array must be:

Type: object

Participation stats for a single conference-year.

No Additional Properties

conference Required

Type: string

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


Example:

"OSDI"

year Required

Type: integer

Calendar year, e.g. 2023.


Example:

2023

category Required

Type: string

Research area category: 'systems' or 'security'.

venue_type Required

Type: string

Venue type: 'conference' for main conferences, 'workshop' for co-located workshops.


Example:

"conference"

total_papers Required

Type: integer

Total accepted papers in this conference-year (including those without artifacts).

Value must be greater or equal to 0


Example:

42

ae_papers Required

Type: integer

Number of papers that participated in the artifact evaluation process.

Value must be greater or equal to 0


Example:

35
Type: number

AE participation rate: (aepapers / totalpapers) * 100.

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


Example:

85.0

available Required

Type: integer

Number of papers that received the 'available' badge.

Value must be greater or equal to 0


Example:

30

functional Required

Type: integer

Number of papers that received the 'functional' badge.

Value must be greater or equal to 0


Example:

25

reproduced Required

Type: integer

Number of papers that received the 'reproduced' badge.

Value must be greater or equal to 0


Example:

18

available_pct Required

Type: number

Percentage of total papers with 'available' badge: (available / total_papers) * 100.

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


Example:

90.0

functional_pct Required

Type: number

Percentage of total papers with 'functional' badge: (functional / total_papers) * 100.

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


Example:

83.3

reproduced_pct Required

Type: number

Percentage of total papers with 'reproduced' badge: (reproduced / total_papers) * 100.

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


Example:

60.0

by_area Required

Type: object

Trend data keyed by area: 'security' and 'systems'. Each has parallel year/rate arrays.

Each additional property must conform to the following schema

Type: object

Trend data for a research area over time.

No Additional Properties

years Required

Type: array of integer

List of years in chronological order, e.g. [2017, 2018, ..., 2026].

No Additional Items

Each item of this array must be:

Type: integer

Example:

[
    2021,
    2022,
    2023
]
Type: array of number

AE participation rate per year (%), parallel to the years list.

No Additional Items

Each item of this array must be:

Type: number

Example:

85.0

available_pct Required

Type: array of number

Available badge rate per year (%), parallel to the years list.

No Additional Items

Each item of this array must be:

Type: number

Example:

90.0

functional_pct Required

Type: array of number

Functional badge rate per year (%), parallel to the years list.

No Additional Items

Each item of this array must be:

Type: number

Example:

83.3

reproduced_pct Required

Type: array of number

Reproduced badge rate per year (%), parallel to the years list.

No Additional Items

Each item of this array must be:

Type: number

Example:

60.0