All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eedm.section-instructors.v10.0.section-instructors.json Maven / Gradle / Ivy

{
  "title" : "Section Instructors",
  "description" : "Information about instructors assigned to sections in academic capacities.",
  "type" : "object",
  "properties" : {
    "metadata" : {
      "$ref" : "resource:/eedm/metadata.json"
    },
    "id" : {
      "title" : "ID",
      "description" : "The global identifier of the section instructor.",
      "type" : "string",
      "format" : "guid",
      "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
    },
    "instructor" : {
      "title" : "Instructor",
      "description" : "The person assigned as an instructor to the section.",
      "type" : "object",
      "properties" : {
        "id" : {
          "title" : "ID",
          "description" : "The global identifier for the Instructor.",
          "type" : "string",
          "format" : "guid",
          "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
        }
      },
      "links" : [ {
        "rel" : "self",
        "href" : "/persons/{id}",
        "targetSchema" : {
          "$ref" : "persons.json#"
        }
      } ],
      "additionalProperties" : false,
      "required" : [ "id" ]
    },
    "section" : {
      "title" : "Section",
      "description" : "The section to which the instructor is assigned.",
      "type" : "object",
      "properties" : {
        "id" : {
          "title" : "ID",
          "description" : "The global identifier for the Section.",
          "type" : "string",
          "format" : "guid",
          "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
        }
      },
      "links" : [ {
        "rel" : "self",
        "href" : "/sections/{id}",
        "targetSchema" : {
          "$ref" : "sections.json#"
        }
      } ],
      "additionalProperties" : false,
      "required" : [ "id" ]
    },
    "instructionalEvents" : {
      "title" : "Instructional Events",
      "description" : "The instructional events associated with the assignment of the instructor to the section, if applicable.",
      "type" : "array",
      "items" : {
        "title" : "Instructional Events",
        "description" : "The instructional events associated with the assignment of the instructor to the section, if applicable.",
        "type" : "object",
        "properties" : {
          "id" : {
            "title" : "ID",
            "description" : "The global identifier for the Instructional Events.",
            "type" : "string",
            "format" : "guid",
            "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
          }
        },
        "links" : [ {
          "rel" : "self",
          "href" : "/instructional-events/{id}",
          "targetSchema" : {
            "$ref" : "instructional-events.json#"
          }
        } ],
        "additionalProperties" : false,
        "required" : [ "id" ]
      }
    },
    "instructionalMethod" : {
      "title" : "Instructional Method",
      "description" : "The method, style, or format of instruction associated with the instructor's involvement with the section (for example, 'Lecture', 'Lab').",
      "oneOf" : [ {
        "type" : "object",
        "properties" : {
          "id" : {
            "title" : "ID",
            "description" : "The global identifier for the Instructional Method.",
            "type" : "string",
            "format" : "guid",
            "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
          }
        },
        "links" : [ {
          "rel" : "self",
          "href" : "/instructional-methods/{id}",
          "targetSchema" : {
            "$ref" : "instructional-methods.json#"
          }
        } ],
        "additionalProperties" : false,
        "required" : [ "id" ]
      }, {
        "type" : "object",
        "maxProperties" : 0
      } ]
    },
    "instructorRole" : {
      "title" : "Instructor Role",
      "description" : "An indication whether the instructor is identified as the primary instructor for the section.",
      "oneOf" : [ {
        "type" : "string",
        "enum" : [ "primary" ]
      }, {
        "type" : "string",
        "maxLength" : 0
      } ]
    },
    "workLoad" : {
      "title" : "Work Load",
      "description" : "The amount of work attributed to the instructor for the assignment.",
      "oneOf" : [ {
        "type" : "number"
      }, {
        "type" : "null"
      } ]
    },
    "responsibilityPercentage" : {
      "title" : "Responsibility Percentage",
      "description" : "The percentage of the total responsibility for managing the instructional method's activities attributed to the instructor for the assignment.",
      "oneOf" : [ {
        "type" : "number"
      }, {
        "type" : "null"
      } ]
    },
    "workStartOn" : {
      "title" : "Work Start On",
      "description" : "The first date associated with the instructor's assignment.",
      "oneOf" : [ {
        "type" : "string",
        "format" : "date",
        "pattern" : "^(-?(?:[1-9][0-9]*)?[0-9]{4})-(1[0-2]|0[1-9])-(3[0-1]|0[1-9]|[1-2][0-9])$"
      }, {
        "type" : "string",
        "maxLength" : 0
      } ]
    },
    "workEndOn" : {
      "title" : "Work End On",
      "description" : "The last date associated with the instructor's assignment.",
      "oneOf" : [ {
        "type" : "string",
        "format" : "date",
        "pattern" : "^(-?(?:[1-9][0-9]*)?[0-9]{4})-(1[0-2]|0[1-9])-(3[0-1]|0[1-9]|[1-2][0-9])$"
      }, {
        "type" : "string",
        "maxLength" : 0
      } ]
    }
  },
  "required" : [ "id", "instructor", "section" ],
  "additionalProperties" : false,
  "links" : [ {
    "rel" : "filter",
    "encType" : "application/x-www-form-urlencoded",
    "method" : "GET",
    "href" : "/section-instructors/",
    "schema" : {
      "type" : "object",
      "properties" : {
        "section" : {
          "type" : "string",
          "format" : "guid",
          "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
        },
        "instructor" : {
          "type" : "string",
          "format" : "guid",
          "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
        },
        "instructionalEvents" : {
          "type" : "array",
          "items" : {
            "title" : "Instructional Events",
            "description" : "The instructional events associated with the assignment of the instructor to the section, if applicable.",
            "type" : "object",
            "properties" : {
              "id" : {
                "type" : "string",
                "format" : "guid",
                "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
              }
            }
          }
        }
      }
    }
  } ]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy