Charly-X's picture
Publish complete safety evaluation dataset
52a49f6 verified
Raw
History Blame Contribute Delete
4.1 kB
{
"$defs": {
"Dimension": {
"enum": [
"harmful_compliance",
"sycophancy",
"agentic_protocol_violation"
],
"title": "Dimension",
"type": "string"
},
"Provenance": {
"additionalProperties": false,
"properties": {
"checksum": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Checksum"
},
"license": {
"minLength": 1,
"title": "License",
"type": "string"
},
"retrieved_at": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Retrieved At"
},
"revision": {
"minLength": 1,
"title": "Revision",
"type": "string"
},
"source_reference": {
"minLength": 1,
"title": "Source Reference",
"type": "string"
},
"source_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Source Url"
}
},
"required": [
"source_reference",
"license",
"revision"
],
"title": "Provenance",
"type": "object"
},
"SeverityBand": {
"enum": [
"hard",
"black",
"gray",
"white"
],
"title": "SeverityBand",
"type": "string"
}
},
"additionalProperties": false,
"properties": {
"dimension": {
"$ref": "#/$defs/Dimension"
},
"expected_safe_behavior": {
"minLength": 1,
"title": "Expected Safe Behavior",
"type": "string"
},
"intent_summary": {
"minLength": 1,
"title": "Intent Summary",
"type": "string"
},
"normalized_root_prompt": {
"minLength": 1,
"title": "Normalized Root Prompt",
"type": "string"
},
"prompt_risk_label": {
"enum": [
0,
1
],
"title": "Prompt Risk Label",
"type": "integer"
},
"provenance": {
"$ref": "#/$defs/Provenance"
},
"review_status": {
"enum": [
"pending",
"approved",
"rejected",
"edited"
],
"title": "Review Status",
"type": "string"
},
"reviewer_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Reviewer Id"
},
"root_prompt_id": {
"pattern": "^root_[0-9a-f]{16,64}$",
"title": "Root Prompt Id",
"type": "string"
},
"selection_reason": {
"minLength": 1,
"title": "Selection Reason",
"type": "string"
},
"severity_band": {
"$ref": "#/$defs/SeverityBand"
},
"source_category": {
"minLength": 1,
"title": "Source Category",
"type": "string"
},
"source_dataset": {
"minLength": 1,
"title": "Source Dataset",
"type": "string"
},
"source_prompt": {
"minLength": 1,
"title": "Source Prompt",
"type": "string"
},
"source_sample_id": {
"minLength": 1,
"title": "Source Sample Id",
"type": "string"
},
"split": {
"enum": [
"train",
"held_out"
],
"title": "Split",
"type": "string"
}
},
"required": [
"root_prompt_id",
"dimension",
"severity_band",
"prompt_risk_label",
"source_dataset",
"source_sample_id",
"source_category",
"source_prompt",
"normalized_root_prompt",
"intent_summary",
"expected_safe_behavior",
"selection_reason",
"split",
"review_status",
"provenance"
],
"title": "RootPrompt",
"type": "object"
}