7shifts · Schema

Location

7shifts Location resource.

RestaurantSchedulingWorkforce ManagementEmployee SchedulingTime TrackingHRISLabor

Properties

Name Type Description
id integer
company_id integer
name string
address string
city string
state string
country string
zip string
timezone string
created string
modified string
View JSON Schema on GitHub

JSON Schema

7shifts-location-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-location-schema.json",
  "title": "Location",
  "type": "object",
  "description": "7shifts Location resource.",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "company_id": {
      "type": "integer",
      "format": "int64"
    },
    "name": {
      "type": "string"
    },
    "address": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "zip": {
      "type": "string"
    },
    "timezone": {
      "type": "string"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    },
    "modified": {
      "type": "string",
      "format": "date-time"
    }
  }
}