Skip to content

summary

src.models.aggregates.summary

Summary statistics schema.

Generated by generate_statistics.pysummary.yml.

Summary

Bases: BaseModel

High-level summary: total artifact and conference counts, year range, and last-updated timestamp.

Source code in src/models/aggregates/summary.py
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
class Summary(BaseModel):
    """High-level summary: total artifact and conference counts, year range, and last-updated timestamp."""

    schema_version: str = Field(
        description="Semantic version of the data schema bundle, e.g. '0.1.1'.", examples=["0.1.2"]
    )
    total_artifacts: int = Field(
        ge=0,
        description="Total number of evaluated artifacts across all conferences and years, e.g. 2831.",
        examples=[2831],
    )
    total_conferences: int = Field(ge=0, description="Total number of tracked conferences, e.g. 13.", examples=[13])
    systems_artifacts: int = Field(
        ge=0, description="Number of artifacts from systems conferences (ATC, EUROSYS, FAST, OSDI, SC, SOSP)."
    )
    security_artifacts: int = Field(
        ge=0,
        description="Number of artifacts from security conferences (ACSAC, CHES, NDSS, PETS, SYSTEX, USENIXSEC, WOOT).",
    )
    conferences_list: list[str] = Field(
        description="All tracked conference abbreviations, e.g. ['ACSAC', 'ATC', 'CHES', ..., 'WOOT'].",
        examples=[
            [
                "ACSAC",
                "ATC",
                "CHES",
                "EUROSYS",
                "FAST",
                "NDSS",
                "OSDI",
                "PETS",
                "SC",
                "SOSP",
                "SYSTEX",
                "USENIXSEC",
                "WOOT",
            ]
        ],
    )
    systems_conferences: list[str] = Field(
        description="Systems conference abbreviations, e.g. ['ATC', 'EUROSYS', 'FAST', 'OSDI', 'SC', 'SOSP'].",
        examples=[["ATC", "EUROSYS", "FAST", "OSDI", "SC", "SOSP"]],
    )
    security_conferences: list[str] = Field(
        description="Security conference abbreviations, e.g. ['ACSAC', 'CHES', 'NDSS', 'PETS', 'SYSTEX', 'USENIXSEC', 'WOOT'].",
        examples=[["ACSAC", "CHES", "NDSS", "PETS", "SYSTEX", "USENIXSEC", "WOOT"]],
    )
    year_range: str = Field(
        pattern=r"^\d{4}-\d{4}$", description="Range of years covered, e.g. '2017-2026'.", examples=["2017-2026"]
    )
    last_updated: str = Field(
        description="ISO 8601 UTC timestamp of last data update, e.g. '2026-04-27 21:26:06 UTC'.",
        examples=["2026-04-27 21:26:09 UTC"],
    )

    model_config = {"extra": "forbid"}