48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
|
|
{
|
||
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||
|
|
"title": "ScoringRulesSchema",
|
||
|
|
"description": "C2 generate-scoring-rules AI 输出校验 schema",
|
||
|
|
"type": "object",
|
||
|
|
"required": ["scoring_rules"],
|
||
|
|
"properties": {
|
||
|
|
"scoring_rules": {
|
||
|
|
"type": "array",
|
||
|
|
"items": {
|
||
|
|
"type": "object",
|
||
|
|
"required": ["dimension", "score_weight"],
|
||
|
|
"properties": {
|
||
|
|
"dimension": {
|
||
|
|
"type": "string",
|
||
|
|
"minLength": 1,
|
||
|
|
"maxLength": 50
|
||
|
|
},
|
||
|
|
"competency_dimension": {
|
||
|
|
"type": "string",
|
||
|
|
"maxLength": 50
|
||
|
|
},
|
||
|
|
"score_weight": {
|
||
|
|
"type": "number",
|
||
|
|
"exclusiveMinimum": 0,
|
||
|
|
"maximum": 1
|
||
|
|
},
|
||
|
|
"ai_auto_score": {
|
||
|
|
"type": "boolean"
|
||
|
|
},
|
||
|
|
"osce_dimension": {
|
||
|
|
"type": "boolean"
|
||
|
|
},
|
||
|
|
"scoring_standard": {
|
||
|
|
"type": "string"
|
||
|
|
},
|
||
|
|
"rubric_json": {
|
||
|
|
"type": "object",
|
||
|
|
"additionalProperties": { "type": "string" }
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"additionalProperties": false
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"additionalProperties": false
|
||
|
|
}
|