7shifts · Schema
Wage
7shifts Wage resource.
RestaurantSchedulingWorkforce ManagementEmployee SchedulingTime TrackingHRISLabor
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| user_id | integer | |
| role_id | integer | |
| wage_type | string | |
| wage_cents | integer | Wage amount in cents. |
| effective_date | string | |
| created | string | |
| modified | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/7shifts/refs/heads/main/json-schema/7shifts-wage-schema.json",
"title": "Wage",
"type": "object",
"description": "7shifts Wage resource.",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"user_id": {
"type": "integer",
"format": "int64"
},
"role_id": {
"type": "integer",
"format": "int64"
},
"wage_type": {
"type": "string",
"enum": [
"hourly",
"weekly_salary",
"annual_salary"
]
},
"wage_cents": {
"type": "integer",
"description": "Wage amount in cents."
},
"effective_date": {
"type": "string",
"format": "date"
},
"created": {
"type": "string",
"format": "date-time"
},
"modified": {
"type": "string",
"format": "date-time"
}
}
}