Absentify · Schema

Workspace

Workspace settings and configuration.

Absence ManagementHRLeave ManagementMicrosoft TeamsHuman Resources

Properties

Name Type Description
id string Unique identifier of the workspace.
name string Name of the workspace.
createdAt string Timestamp when the workspace was created.
updatedAt string Timestamp when the workspace was last updated.
View JSON Schema on GitHub

JSON Schema

absentify-workspace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/absentify/main/json-schema/absentify-workspace-schema.json",
  "title": "Workspace",
  "description": "Workspace settings and configuration.",
  "type": "object",
  "x-schema-source": "openapi-spec",
  "x-provider": "absentify",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the workspace.",
      "example": "500001"
    },
    "name": {
      "type": "string",
      "description": "Name of the workspace.",
      "example": "Acme Corporation"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the workspace was created.",
      "example": "2024-01-01T00:00:00Z"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the workspace was last updated.",
      "example": "2025-06-01T09:00:00Z"
    }
  }
}