Skip to content

skill_equivalence_output.json

Source: schemas/skill_equivalence_output.json

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SkillEquivalenceOutput",
  "type": "object",
  "required": ["agreement", "rationale"],
  "additionalProperties": false,
  "properties": {
    "agreement": {
      "type": "number",
      "minimum": 0.0,
      "maximum": 1.0,
      "description": "0.0 (disagree) to 1.0 (fully equivalent)"
    },
    "rationale": {
      "type": "string",
      "description": "Short justification of the agreement score"
    }
  }
}