{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://w3id.org/moochub/4.0.0/schemas/iscedFAlignment.json",
  "title": "ISCED-F AlignmentObject",
  "description": "An AlignmentObject for the ISCED-F framework.",
  "allOf": [
    {
      "$ref": "https://w3id.org/moochub/4.0.0/schemas/alignmentObject.json"
    },
    {
      "type": "object",
      "properties": {
        "alignmentType": {
          "const": "educationalSubject"
        },
        "educationalFramework": {
          "const": "ISCED-F"
        },
        "targetUrl": {
          "type": "string",
          "format": "uri",
          "pattern": "^http://data.europa.eu/esco/isced-f/.*$"
        }
      },
      "required": ["targetUrl"]
    }
  ]
}
