7shifts · Schema

Department

7shifts Department resource.

RestaurantSchedulingWorkforce ManagementEmployee SchedulingTime TrackingHRISLabor

Properties

Name Type Description
id integer
location_id integer
name string
created string
modified string
View JSON Schema on GitHub

JSON Schema

7shifts-department-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/7shifts/refs/heads/main/json-schema/7shifts-department-schema.json",
  "title": "Department",
  "type": "object",
  "description": "7shifts Department resource.",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "location_id": {
      "type": "integer",
      "format": "int64"
    },
    "name": {
      "type": "string"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "modified": {
      "type": "string",
      "format": "date-time"
    }
  }
}