Filevine · Schema

Filevine Project

Schema for a Filevine project (matter/case). Projects are the central organizing unit and hold contacts, documents, notes, deadlines, tasks, and time entries.

LegalCase ManagementMattersIntakeDocumentsLOISWebhooksLegal AIPersonal InjuryMass Torts

Properties

Name Type Description
projectId integer
projectName string
number string Human-readable matter number.
projectTypeId integer
clientId integer
phaseName string
isArchived boolean
createdDate string
modifiedDate string
View JSON Schema on GitHub

JSON Schema

filevine-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/schemas/filevine/filevine-project-schema.json",
  "title": "Filevine Project",
  "description": "Schema for a Filevine project (matter/case). Projects are the central organizing unit and hold contacts, documents, notes, deadlines, tasks, and time entries.",
  "type": "object",
  "required": ["projectId", "projectName", "projectTypeId"],
  "properties": {
    "projectId": { "type": "integer", "format": "int64" },
    "projectName": { "type": "string" },
    "number": { "type": "string", "description": "Human-readable matter number." },
    "projectTypeId": { "type": "integer" },
    "clientId": { "type": "integer", "format": "int64" },
    "phaseName": { "type": "string" },
    "isArchived": { "type": "boolean" },
    "createdDate": { "type": "string", "format": "date-time" },
    "modifiedDate": { "type": "string", "format": "date-time" }
  }
}