PracticePanther · Schema

Activity

JSON Schema for the PracticePanther Activity resource

LegalLaw Practice ManagementCase ManagementBillingTrust AccountingTime TrackingLegal Tech

Properties

Name Type Description
date string
shares array
workflowId integer
workflow object
activitiesSync array
guid string
id integer
googleId string
isEnabled boolean
isDeleted boolean
createdDate string
lastModifiedDate string
recurrenceStopDate string
createdById integer
createdBy object
lastModifiedBy object
lawToolboxCourtRule_Id string
lawToolboxCourtRule object
lawToolboxDeadlineId string
lawToolboxDeadlineNumber string
tenantId integer
tenant object
isHoursLoggedManually boolean sets if the activity should be marked as "time logged" even if no time was linked to it.
recurrenceId integer will show the realted recurrence for this event, if such exists
recurrence object
type string
accountId integer
account object
contactId integer
contact object
projectId integer
project object
saleDocumentId integer
saleDocument object
name string
description string
assignedToUsers array
assignedToContacts array
htmlBody object
dueDate string
taskCompleteDate string
startDateTime string
endDateTime string
isAllDayActivity boolean
location string
status string
mandrillId string
isPrivate boolean
priority string
isSendNotificationEmail boolean
isSendCompletedEmail boolean
isSendTaskCompleteEmail boolean
isRecurringActivity boolean
recurringActivityStartDate string
recurringActivityEndDate string
recurringRepeatType string
callType string
tags array
eventColor string
emailProperties object
noteProperties object
callProperties object
timeEntries array
flatFees array
eventBackgroundColor string
blobs array
invitees array
activityReminders array
activityConditionalTasks array
completedTask object
View JSON Schema on GitHub

JSON Schema

practicepanther-activity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/practicepanther/main/json-schema/practicepanther-activity-schema.json",
  "title": "Activity",
  "description": "JSON Schema for the PracticePanther Activity resource",
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "format": "date-time"
    },
    "shares": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/Share"
      }
    },
    "workflowId": {
      "type": "integer",
      "format": "int64"
    },
    "workflow": {
      "$ref": "#/$defs/Workflow"
    },
    "activitiesSync": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/ActivitySync"
      }
    },
    "guid": {
      "type": "string",
      "format": "uuid"
    },
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "googleId": {
      "type": "string"
    },
    "isEnabled": {
      "type": "boolean"
    },
    "isDeleted": {
      "type": "boolean"
    },
    "createdDate": {
      "type": "string",
      "format": "date-time"
    },
    "lastModifiedDate": {
      "type": "string",
      "format": "date-time"
    },
    "recurrenceStopDate": {
      "type": "string",
      "format": "date-time"
    },
    "createdById": {
      "type": "integer",
      "format": "int32"
    },
    "createdBy": {
      "$ref": "#/$defs/User"
    },
    "lastModifiedBy": {
      "$ref": "#/$defs/User"
    },
    "lawToolboxCourtRule_Id": {
      "type": "string",
      "format": "uuid"
    },
    "lawToolboxCourtRule": {
      "$ref": "#/$defs/LawToolboxCourtRule"
    },
    "lawToolboxDeadlineId": {
      "type": "string"
    },
    "lawToolboxDeadlineNumber": {
      "type": "string"
    },
    "tenantId": {
      "type": "integer",
      "format": "int64"
    },
    "tenant": {
      "$ref": "#/$defs/Tenant"
    },
    "isHoursLoggedManually": {
      "type": "boolean",
      "description": "sets if the activity should be marked as \"time logged\" even if no time was linked to it."
    },
    "recurrenceId": {
      "type": "integer",
      "format": "int64",
      "description": "will show the realted recurrence for this event, if such exists"
    },
    "recurrence": {
      "$ref": "#/$defs/Recurrence"
    },
    "type": {
      "type": "string",
      "enum": [
        "Call",
        "Task",
        "Event",
        "Email",
        "Note"
      ]
    },
    "accountId": {
      "type": "integer",
      "format": "int64"
    },
    "account": {
      "$ref": "#/$defs/Account"
    },
    "contactId": {
      "type": "integer",
      "format": "int64"
    },
    "contact": {
      "$ref": "#/$defs/Contact"
    },
    "projectId": {
      "type": "integer",
      "format": "int64"
    },
    "project": {
      "$ref": "#/$defs/Project"
    },
    "saleDocumentId": {
      "type": "integer",
      "format": "int64"
    },
    "saleDocument": {
      "$ref": "#/$defs/SaleDocument"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "assignedToUsers": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/User"
      }
    },
    "assignedToContacts": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/Contact"
      }
    },
    "htmlBody": {
      "$ref": "#/$defs/Blob"
    },
    "dueDate": {
      "type": "string",
      "format": "date-time"
    },
    "taskCompleteDate": {
      "type": "string",
      "format": "date-time"
    },
    "startDateTime": {
      "type": "string",
      "format": "date-time"
    },
    "endDateTime": {
      "type": "string",
      "format": "date-time"
    },
    "isAllDayActivity": {
      "type": "boolean"
    },
    "location": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "NotCompleted",
        "InProgress",
        "Completed",
        "Conditional"
      ]
    },
    "mandrillId": {
      "type": "string"
    },
    "isPrivate": {
      "type": "boolean"
    },
    "priority": {
      "type": "string",
      "enum": [
        "Low",
        "Medium",
        "High"
      ]
    },
    "isSendNotificationEmail": {
      "type": "boolean"
    },
    "isSendCompletedEmail": {
      "type": "boolean"
    },
    "isSendTaskCompleteEmail": {
      "type": "boolean"
    },
    "isRecurringActivity": {
      "type": "boolean"
    },
    "recurringActivityStartDate": {
      "type": "string",
      "format": "date-time"
    },
    "recurringActivityEndDate": {
      "type": "string",
      "format": "date-time"
    },
    "recurringRepeatType": {
      "type": "string",
      "enum": [
        "None",
        "Daily",
        "Weekly",
        "Monthly",
        "Yearly"
      ]
    },
    "callType": {
      "type": "string",
      "enum": [
        "Inbound",
        "Outbound"
      ]
    },
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/Tag"
      }
    },
    "eventColor": {
      "type": "string"
    },
    "emailProperties": {
      "$ref": "#/$defs/EmailProperties"
    },
    "noteProperties": {
      "$ref": "#/$defs/NoteProperties"
    },
    "callProperties": {
      "$ref": "#/$defs/CallProperties"
    },
    "timeEntries": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/TimeEntry"
      }
    },
    "flatFees": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/FlatFee"
      }
    },
    "eventBackgroundColor": {
      "type": "string"
    },
    "blobs": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/Blob"
      }
    },
    "invitees": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/Invitee"
      }
    },
    "activityReminders": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/ActivityReminder"
      }
    },
    "activityConditionalTasks": {
      "type": "array",
      "items": {
        "$ref": "#/$defs/ActivityConditionalTask"
      }
    },
    "completedTask": {
      "$ref": "#/$defs/CompletedTask"
    }
  },
  "required": [
    "name"
  ]
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/practicepanther-activity"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.