# Search Data

- [1. Search Data > Search Entry](#items)
  - [1.1. Property `Search Data > Search Entry > title`](#items_title)
  - [1.2. Property `Search Data > Search Entry > conference`](#items_conference)
  - [1.3. Property `Search Data > Search Entry > category`](#items_category)
  - [1.4. Property `Search Data > Search Entry > year`](#items_year)
  - [1.5. Property `Search Data > Search Entry > badges`](#items_badges)
    - [1.5.1. Search Data > Search Entry > badges > badges items](#items_badges_items)
  - [1.6. Property `Search Data > Search Entry > repository_url`](#items_repository_url)
  - [1.7. Property `Search Data > Search Entry > artifact_url`](#items_artifact_url)
  - [1.8. Property `Search Data > Search Entry > doi_url`](#items_doi_url)
  - [1.9. Property `Search Data > Search Entry > authors`](#items_authors)
    - [1.9.1. Search Data > Search Entry > authors > authors items](#items_authors_items)
  - [1.10. Property `Search Data > Search Entry > affiliations`](#items_affiliations)
    - [1.10.1. Search Data > Search Entry > affiliations > affiliations items](#items_affiliations_items)
  - [1.11. Property `Search Data > Search Entry > artifact_urls`](#items_artifact_urls)
    - [1.11.1. Search Data > Search Entry > artifact_urls > artifact_urls items](#items_artifact_urls_items)
  - [1.12. Property `Search Data > Search Entry > paper_url`](#items_paper_url)
  - [1.13. Property `Search Data > Search Entry > appendix_url`](#items_appendix_url)
  - [1.14. Property `Search Data > Search Entry > github_url`](#items_github_url)
  - [1.15. Property `Search Data > Search Entry > award`](#items_award)

**Title:** Search Data

|              |         |
| ------------ | ------- |
| **Type**     | `array` |
| **Required** | No      |

**Description:** Merged artifact data with author and affiliation information for full-text search on the website. Generated by generate_search_data.py.

|                      | Array restrictions |
| -------------------- | ------------------ |
| **Min items**        | N/A                |
| **Max items**        | N/A                |
| **Items unicity**    | False              |
| **Additional items** | False              |
| **Tuple validation** | See below          |

| Each item of this array must be | Description                                                                   |
| ------------------------------- | ----------------------------------------------------------------------------- |
| [Search Entry](#items)          | A single searchable artifact entry with enriched author and affiliation data. |

## <a name="items"></a>1. Search Data > Search Entry

**Title:** Search Entry

|                           |                     |
| ------------------------- | ------------------- |
| **Type**                  | `object`            |
| **Required**              | No                  |
| **Additional properties** | Not allowed         |
| **Defined in**            | #/$defs/SearchEntry |

**Description:** A single searchable artifact entry with enriched author and affiliation data.

| Property                                   | Pattern | Type             | Deprecated | Definition | Title/Description                                                                                                                                              |
| ------------------------------------------ | ------- | ---------------- | ---------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| + [title](#items_title )                   | No      | string           | No         | -          | Paper title.                                                                                                                                                   |
| + [conference](#items_conference )         | No      | string           | No         | -          | Conference abbreviation.                                                                                                                                       |
| + [category](#items_category )             | No      | enum (of string) | No         | -          | Research domain.                                                                                                                                               |
| + [year](#items_year )                     | No      | integer          | No         | -          | Publication year.                                                                                                                                              |
| + [badges](#items_badges )                 | No      | array of string  | No         | -          | Artifact evaluation badges. Canonical values: 'available', 'functional', 'reproduced', 'reusable', 'replicated'. Some conferences use non-normalized variants. |
| + [repository_url](#items_repository_url ) | No      | string           | No         | -          | Source code repository URL. Empty string if not available.                                                                                                     |
| + [artifact_url](#items_artifact_url )     | No      | string           | No         | -          | Primary artifact archive URL. Empty string if not available.                                                                                                   |
| + [doi_url](#items_doi_url )               | No      | string           | No         | -          | Paper DOI URL. Empty string if not available.                                                                                                                  |
| + [authors](#items_authors )               | No      | array of string  | No         | -          | Author names (DBLP disambiguation suffixes removed).                                                                                                           |
| + [affiliations](#items_affiliations )     | No      | array of string  | No         | -          | Sorted unique institution affiliations of all authors.                                                                                                         |
| - [artifact_urls](#items_artifact_urls )   | No      | array of string  | No         | -          | Multiple artifact location URLs.                                                                                                                               |
| - [paper_url](#items_paper_url )           | No      | string           | No         | -          | Paper DOI or direct link.                                                                                                                                      |
| - [appendix_url](#items_appendix_url )     | No      | string           | No         | -          | Supplementary materials URL.                                                                                                                                   |
| - [github_url](#items_github_url )         | No      | string           | No         | -          | GitHub repository URL.                                                                                                                                         |
| - [award](#items_award )                   | No      | string           | No         | -          | Award designation, if any.                                                                                                                                     |

### <a name="items_title"></a>1.1. Property `Search Data > Search Entry > title`

|              |          |
| ------------ | -------- |
| **Type**     | `string` |
| **Required** | Yes      |

**Description:** Paper title.

### <a name="items_conference"></a>1.2. Property `Search Data > Search Entry > conference`

|              |          |
| ------------ | -------- |
| **Type**     | `string` |
| **Required** | Yes      |

**Description:** Conference abbreviation.

### <a name="items_category"></a>1.3. Property `Search Data > Search Entry > category`

|              |                    |
| ------------ | ------------------ |
| **Type**     | `enum (of string)` |
| **Required** | Yes                |

**Description:** Research domain.

Must be one of:
* "systems"
* "security"

### <a name="items_year"></a>1.4. Property `Search Data > Search Entry > year`

|              |           |
| ------------ | --------- |
| **Type**     | `integer` |
| **Required** | Yes       |

**Description:** Publication year.

### <a name="items_badges"></a>1.5. Property `Search Data > Search Entry > badges`

|              |                   |
| ------------ | ----------------- |
| **Type**     | `array of string` |
| **Required** | Yes               |

**Description:** Artifact evaluation badges. Canonical values: 'available', 'functional', 'reproduced', 'reusable', 'replicated'. Some conferences use non-normalized variants.

|                      | Array restrictions |
| -------------------- | ------------------ |
| **Min items**        | N/A                |
| **Max items**        | N/A                |
| **Items unicity**    | False              |
| **Additional items** | False              |
| **Tuple validation** | See below          |

| Each item of this array must be     | Description |
| ----------------------------------- | ----------- |
| [badges items](#items_badges_items) | -           |

#### <a name="items_badges_items"></a>1.5.1. Search Data > Search Entry > badges > badges items

|              |          |
| ------------ | -------- |
| **Type**     | `string` |
| **Required** | No       |

### <a name="items_repository_url"></a>1.6. Property `Search Data > Search Entry > repository_url`

|              |                 |
| ------------ | --------------- |
| **Type**     | `string`        |
| **Required** | Yes             |
| **Format**   | `uri-reference` |

**Description:** Source code repository URL. Empty string if not available.

### <a name="items_artifact_url"></a>1.7. Property `Search Data > Search Entry > artifact_url`

|              |                 |
| ------------ | --------------- |
| **Type**     | `string`        |
| **Required** | Yes             |
| **Format**   | `uri-reference` |

**Description:** Primary artifact archive URL. Empty string if not available.

### <a name="items_doi_url"></a>1.8. Property `Search Data > Search Entry > doi_url`

|              |                 |
| ------------ | --------------- |
| **Type**     | `string`        |
| **Required** | Yes             |
| **Format**   | `uri-reference` |

**Description:** Paper DOI URL. Empty string if not available.

### <a name="items_authors"></a>1.9. Property `Search Data > Search Entry > authors`

|              |                   |
| ------------ | ----------------- |
| **Type**     | `array of string` |
| **Required** | Yes               |

**Description:** Author names (DBLP disambiguation suffixes removed).

|                      | Array restrictions |
| -------------------- | ------------------ |
| **Min items**        | N/A                |
| **Max items**        | N/A                |
| **Items unicity**    | False              |
| **Additional items** | False              |
| **Tuple validation** | See below          |

| Each item of this array must be       | Description |
| ------------------------------------- | ----------- |
| [authors items](#items_authors_items) | -           |

#### <a name="items_authors_items"></a>1.9.1. Search Data > Search Entry > authors > authors items

|              |          |
| ------------ | -------- |
| **Type**     | `string` |
| **Required** | No       |

### <a name="items_affiliations"></a>1.10. Property `Search Data > Search Entry > affiliations`

|              |                   |
| ------------ | ----------------- |
| **Type**     | `array of string` |
| **Required** | Yes               |

**Description:** Sorted unique institution affiliations of all authors.

|                      | Array restrictions |
| -------------------- | ------------------ |
| **Min items**        | N/A                |
| **Max items**        | N/A                |
| **Items unicity**    | False              |
| **Additional items** | False              |
| **Tuple validation** | See below          |

| Each item of this array must be                 | Description |
| ----------------------------------------------- | ----------- |
| [affiliations items](#items_affiliations_items) | -           |

#### <a name="items_affiliations_items"></a>1.10.1. Search Data > Search Entry > affiliations > affiliations items

|              |          |
| ------------ | -------- |
| **Type**     | `string` |
| **Required** | No       |

### <a name="items_artifact_urls"></a>1.11. Property `Search Data > Search Entry > artifact_urls`

|              |                   |
| ------------ | ----------------- |
| **Type**     | `array of string` |
| **Required** | No                |

**Description:** Multiple artifact location URLs.

|                      | Array restrictions |
| -------------------- | ------------------ |
| **Min items**        | N/A                |
| **Max items**        | N/A                |
| **Items unicity**    | False              |
| **Additional items** | False              |
| **Tuple validation** | See below          |

| Each item of this array must be                   | Description |
| ------------------------------------------------- | ----------- |
| [artifact_urls items](#items_artifact_urls_items) | -           |

#### <a name="items_artifact_urls_items"></a>1.11.1. Search Data > Search Entry > artifact_urls > artifact_urls items

|              |          |
| ------------ | -------- |
| **Type**     | `string` |
| **Required** | No       |
| **Format**   | `uri`    |

### <a name="items_paper_url"></a>1.12. Property `Search Data > Search Entry > paper_url`

|              |          |
| ------------ | -------- |
| **Type**     | `string` |
| **Required** | No       |
| **Format**   | `uri`    |

**Description:** Paper DOI or direct link.

### <a name="items_appendix_url"></a>1.13. Property `Search Data > Search Entry > appendix_url`

|              |          |
| ------------ | -------- |
| **Type**     | `string` |
| **Required** | No       |
| **Format**   | `uri`    |

**Description:** Supplementary materials URL.

### <a name="items_github_url"></a>1.14. Property `Search Data > Search Entry > github_url`

|              |          |
| ------------ | -------- |
| **Type**     | `string` |
| **Required** | No       |
| **Format**   | `uri`    |

**Description:** GitHub repository URL.

### <a name="items_award"></a>1.15. Property `Search Data > Search Entry > award`

|              |          |
| ------------ | -------- |
| **Type**     | `string` |
| **Required** | No       |

**Description:** Award designation, if any.

----------------------------------------------------------------------------------------------------------------------------
Generated using [json-schema-for-humans](https://github.com/coveooss/json-schema-for-humans) on 2026-04-04 at 07:56:20 +0000
