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

eedm.institution-positions.v7.0.institution-positions.json Maven / Gradle / Ivy

{
  "title" : "Institution Positions",
  "description" : "A detailed description of the positions at an institution.",
  "type" : "object",
  "properties" : {
    "metadata" : {
      "$ref" : "resource:/eedm/metadata.json"
    },
    "id" : {
      "title" : "ID",
      "description" : "The global identifier of the institution position.",
      "type" : "string",
      "format" : "guid",
      "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
    },
    "title" : {
      "title" : "Title",
      "description" : "The title of the Institution Position.",
      "type" : "string",
      "minLength" : 1
    },
    "description" : {
      "title" : "Description",
      "description" : "The description of the Institution Position.",
      "type" : "string"
    },
    "campus" : {
      "title" : "Campus",
      "description" : "The physical location of the Institution Position.",
      "oneOf" : [ {
        "type" : "object",
        "properties" : {
          "id" : {
            "title" : "ID",
            "description" : "The global identifier for the Campus.",
            "type" : "string",
            "format" : "guid",
            "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
          }
        },
        "links" : [ {
          "rel" : "self",
          "href" : "/sites/{id}",
          "targetSchema" : {
            "$ref" : "sites.json#"
          }
        } ],
        "additionalProperties" : false,
        "required" : [ "id" ]
      }, {
        "type" : "object",
        "maxProperties" : 0
      } ]
    },
    "departments" : {
      "title" : "Departments",
      "description" : "The operational units of the institution to which the position belongs.",
      "type" : "array",
      "items" : {
        "type" : "object",
        "properties" : {
          "name" : {
            "title" : "Name",
            "description" : "The name of the department to which the position belongs.",
            "type" : "string",
            "minLength" : 1
          },
          "detail" : {
            "title" : "Detail",
            "description" : "The educational institutional unit associated with the position.",
            "oneOf" : [ {
              "type" : "object",
              "properties" : {
                "id" : {
                  "title" : "ID",
                  "description" : "The global identifier for the Detail.",
                  "type" : "string",
                  "format" : "guid",
                  "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
                }
              },
              "links" : [ {
                "rel" : "self",
                "href" : "/educational-institution-units/{id}",
                "targetSchema" : {
                  "$ref" : "educational-institution-units.json#"
                }
              } ],
              "additionalProperties" : false,
              "required" : [ "id" ]
            }, {
              "type" : "object",
              "maxProperties" : 0
            } ]
          }
        },
        "additionalProperties" : false,
        "required" : [ "name" ]
      }
    },
    "accountingStrings" : {
      "title" : "Accounting Strings",
      "description" : "The accounting strings associated with the position.",
      "type" : "array",
      "items" : {
        "type" : "string"
      }
    },
    "status" : {
      "title" : "Status",
      "description" : "The status of the position (e.g. active, frozen, cancelled, inactive).",
      "enum" : [ "active", "frozen", "cancelled", "inactive" ],
      "type" : "string"
    },
    "hoursPerPeriod" : {
      "title" : "Hours Per Period",
      "description" : "The number of hours of work in specified time periods.",
      "type" : "array",
      "items" : {
        "type" : "object",
        "properties" : {
          "period" : {
            "title" : "Period",
            "description" : "The defined time period (e.g. day, week, month, etc.)",
            "enum" : [ "day", "week", "month", "year", "payPeriod" ],
            "type" : "string"
          },
          "hours" : {
            "title" : "Hours",
            "description" : "The number of hours of work in the specified time period.",
            "minimum" : 0,
            "type" : "number",
            "format" : "positiveNumber"
          }
        },
        "additionalProperties" : false,
        "required" : [ "period", "hours" ]
      }
    },
    "fullTimeEquivalent" : {
      "title" : "Full Time Equivalent",
      "description" : "The ratio of hours of work for the position to the hours of work expected of a full-time employee.",
      "oneOf" : [ {
        "type" : "number",
        "minimum" : 0,
        "format" : "positiveNumber"
      }, {
        "type" : "null"
      } ]
    },
    "bargainingUnit" : {
      "title" : "Bargaining Unit",
      "description" : "The group or union associated with the position.",
      "oneOf" : [ {
        "type" : "object",
        "properties" : {
          "id" : {
            "title" : "ID",
            "description" : "The global identifier for the Bargaining Unit.",
            "type" : "string",
            "format" : "guid",
            "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
          }
        },
        "links" : [ {
          "rel" : "self",
          "href" : "/bargaining-units/{id}",
          "targetSchema" : {
            "$ref" : "bargaining-units.json#"
          }
        } ],
        "additionalProperties" : false,
        "required" : [ "id" ]
      }, {
        "type" : "object",
        "maxProperties" : 0
      } ]
    },
    "reportsTo" : {
      "title" : "Reports To",
      "description" : "The positions to which this position reports.",
      "type" : "array",
      "items" : {
        "type" : "object",
        "properties" : {
          "position" : {
            "title" : "Position",
            "description" : "The position to which this position reports.",
            "type" : "object",
            "properties" : {
              "id" : {
                "title" : "ID",
                "description" : "The global identifier for the Position.",
                "type" : "string",
                "format" : "guid",
                "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
              }
            },
            "links" : [ {
              "rel" : "self",
              "href" : "/institution-positions/{id}",
              "targetSchema" : {
                "$ref" : "institution-positions.json#"
              }
            } ],
            "additionalProperties" : false,
            "required" : [ "id" ]
          },
          "type" : {
            "title" : "Type",
            "description" : "The type of reporting position (e.g. primary, alternate, etc.).",
            "enum" : [ "primary", "alternate" ],
            "type" : "string"
          }
        },
        "additionalProperties" : false,
        "required" : [ "position", "type" ]
      }
    },
    "exemptionType" : {
      "title" : "Exemption Type",
      "description" : "An indicator if the position is exempt or non-exempt.",
      "oneOf" : [ {
        "type" : "string",
        "enum" : [ "exempt", "nonExempt" ]
      }, {
        "type" : "string",
        "maxLength" : 0
      } ]
    },
    "compensation" : {
      "title" : "Compensation",
      "description" : "The salary or wages awarded for the position.",
      "type" : "object",
      "properties" : {
        "type" : {
          "title" : "Type",
          "description" : "The type of compensation awarded (e.g. salary, wages, etc.)",
          "enum" : [ "salary", "wages" ],
          "type" : "string"
        },
        "range" : {
          "title" : "Range",
          "description" : "The range of compensation awarded for the position.",
          "type" : "object",
          "properties" : {
            "lowerBound" : {
              "title" : "Lower Bound",
              "description" : "The lower bound of compensation offered for the position.",
              "minimum" : 0,
              "type" : "number",
              "format" : "positiveNumber"
            },
            "upperBound" : {
              "title" : "Upper Bound",
              "description" : "The upper bound of compensation offered for the position.",
              "minimum" : 0,
              "type" : "number",
              "format" : "positiveNumber"
            },
            "currencyCode" : {
              "title" : "Currency Code",
              "description" : "The ISO 4217 currency code",
              "enum" : [ "AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "INR", "IQD", "IRR", "ISK", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SRD", "SSP", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWL" ],
              "type" : "string"
            }
          },
          "additionalProperties" : false,
          "required" : [ "lowerBound", "upperBound", "currencyCode" ]
        }
      },
      "additionalProperties" : false,
      "required" : [ "type", "range" ]
    },
    "startOn" : {
      "title" : "Start On",
      "description" : "The date when the position is first available.",
      "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])$"
    },
    "endOn" : {
      "title" : "End On",
      "description" : "The date when the position is last available.",
      "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
      } ]
    },
    "authorizedOn" : {
      "title" : "Authorized On",
      "description" : "The date when the position is authorized.",
      "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
      } ]
    },
    "classification" : {
      "title" : "Classification",
      "description" : "The employment classification associated with the position.",
      "oneOf" : [ {
        "type" : "object",
        "properties" : {
          "id" : {
            "title" : "ID",
            "description" : "The global identifier for the Classification.",
            "type" : "string",
            "format" : "guid",
            "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
          }
        },
        "links" : [ {
          "rel" : "self",
          "href" : "/employment-classifications/{id}",
          "targetSchema" : {
            "$ref" : "employment-classifications.json#"
          }
        } ],
        "additionalProperties" : false,
        "required" : [ "id" ]
      }, {
        "type" : "object",
        "maxProperties" : 0
      } ]
    }
  },
  "required" : [ "id", "title", "departments", "status", "startOn" ],
  "additionalProperties" : false,
  "links" : [ {
    "rel" : "filter",
    "encType" : "application/x-www-form-urlencoded",
    "method" : "GET",
    "href" : "/institution-positions/",
    "schema" : {
      "type" : "object",
      "properties" : {
        "campus" : {
          "description" : "The physical location of the pnstitution position.",
          "type" : "string",
          "format" : "guid",
          "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
        },
        "status" : {
          "description" : "The status of the position (e.g. active, frozen, cancelled, inactive).",
          "type" : "string",
          "enum" : [ "active", "frozen", "cancelled", "inactive" ]
        },
        "bargainingUnit" : {
          "description" : "The group or union associated with the position.",
          "type" : "string",
          "format" : "guid",
          "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
        },
        "reportsToPosition" : {
          "description" : "The position to which this position reports.",
          "type" : "string",
          "format" : "guid",
          "pattern" : "^[a-f0-9]{8}(?:-[a-f0-9]{4}){3}-[a-f0-9]{12}$"
        },
        "exemptionType" : {
          "description" : "An indicator if the position is exempt or non-exempt.",
          "type" : "string",
          "enum" : [ "exempt", "nonExempt" ]
        },
        "compensationType" : {
          "description" : "The type of compensation awarded (e.g. salary, wages, etc.)",
          "type" : "string",
          "enum" : [ "salary", "wages" ]
        },
        "startOn" : {
          "description" : "The date when the position is first available.",
          "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])$"
        },
        "endOn" : {
          "description" : "The date when the position is last available.",
          "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])$"
        }
      }
    }
  } ]
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy