openclaw-language-infrastructure / screening-audit.schema.json
cy0307's picture
Publish frozen survey corpus and audit
7bf1401 verified
Raw
History Blame Contribute Delete
2.26 kB
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://chaoyue0307.github.io/openclaw-language-infrastructure/data/screening-audit.schema.json",
"title": "OpenClaw--Moltbook screening audit",
"type": "object",
"required": ["schema_version", "title", "description", "freeze_date", "license", "counts", "records"],
"additionalProperties": false,
"properties": {
"schema_version": { "type": "string", "const": "1.0.0" },
"title": { "type": "string", "minLength": 1 },
"description": { "type": "string", "minLength": 1 },
"freeze_date": { "type": "string", "const": "2026-03-10" },
"license": { "type": "string", "const": "CC-BY-4.0" },
"counts": {
"type": "object",
"required": ["identified", "after_deduplication", "full_texts_assessed", "included", "duplicate_merged", "excluded_title_abstract", "excluded_full_text"],
"properties": {
"identified": { "const": 85 },
"after_deduplication": { "const": 83 },
"full_texts_assessed": { "const": 81 },
"included": { "const": 79 },
"duplicate_merged": { "const": 2 },
"excluded_title_abstract": { "const": 2 },
"excluded_full_text": { "const": 2 }
},
"additionalProperties": false
},
"records": {
"type": "array",
"minItems": 85,
"maxItems": 85,
"items": {
"type": "object",
"required": ["record_id", "source_record_key", "citation_key", "canonical_citation_key", "canonical_record_id", "title", "authors", "first_public_date", "url", "source_family", "source_tier", "screening_stage", "screening_role", "retrieval_route", "decision_reason_code", "alias_mapping"],
"properties": {
"record_id": { "type": "string", "pattern": "^SCREEN-[0-9]{3}$" },
"screening_stage": { "enum": ["included_direct", "included_context", "duplicate_merged", "excluded_title_abstract", "excluded_full_text"] },
"screening_role": { "enum": ["included_direct", "included_context", "duplicate_merged", "excluded_title_abstract", "excluded_full_text"] },
"retrieval_route": { "enum": ["alias_search", "snowball", "official", "project"] }
},
"additionalProperties": true
}
}
}
}