Artifact Collection

Type: array

Array of Artifact records. Each element: A single research artifact associated with a conference paper.

No Additional Items

Each item of this array must be:

Type: object

A single research artifact associated with a conference paper.

No Additional Properties

conference Required

Type: enum (of string)

Conference abbreviation, e.g. 'OSDI', 'USENIXSEC', 'NDSS'. See CONFERENCE_NAMES for the full list.

Must be one of:

  • "ACSAC"
  • "ATC"
  • "CHES"
  • "EUROSYS"
  • "FAST"
  • "NDSS"
  • "OSDI"
  • "PETS"
  • "SC"
  • "SOSP"
  • "SYSTEX"
  • "USENIXSEC"
  • "WOOT"

Example:

"OSDI"

category Required

Type: enum (of string)

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

Must be one of:

  • "systems"
  • "security"

year Required

Type: integer

Publication year (2017–2030), e.g. 2023.

Value must be greater or equal to 2017 and lesser or equal to 2030


Example:

2023

title Required

Type: string

Full paper title as it appears in the conference proceedings.


Example:

"Understanding and Detecting Software Upgrade Failures in Distributed Systems"

badges Required

Type: array of string

Artifact evaluation badges awarded by the AE committee. Canonical lowercase values: 'available', 'functional', 'reproduced', 'reusable', 'replicated'. Some older data retains capitalized variants, e.g. 'Available', 'Functional'.

No Additional Items

Each item of this array must be:

Type: string

Example:

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

artifact_urls Required

Type: array of string

All artifact-related URLs for this paper. Includes GitHub/GitLab repos, Zenodo DOIs, and other archives. Example: ['https://github.com/org/repo', 'https://doi.org/10.5281/zenodo.12345'].

No Additional Items

Each item of this array must be:

Type: string

Example:

[
    "https://github.com/org/repo",
    "https://doi.org/10.5281/zenodo.12345"
]

doi

Type: string Default: ""

Canonical artifact DOI extracted from artifact_urls, e.g. '10.5281/zenodo.12345'. Empty string if none found.


Example:

"10.5281/zenodo.12345"
Default: null

DOI URL or direct link to the published paper, e.g. 'https://doi.org/10.1145/...'. Null if unavailable.

Option 1

Type: string

Option 2

Type: null

Example:

"https://doi.org/10.1145/3600006.3613152"
Default: null

URL to supplementary materials or appendix. Null if unavailable.

Option 1

Type: string

Option 2

Type: null

Example:

"https://arxiv.org/abs/2301.12345"
Default: null

Award designation such as 'Distinguished Artifact'. Null if no award.

Option 1

Type: string

Option 2

Type: null

Example:

"Distinguished Artifact"