Filevine · Schema

Filevine Contact

Schema for a Filevine contact card. Contacts represent the people and organizations associated with a project — clients, opposing parties, witnesses, experts, and third parties.

LegalCase ManagementMattersIntakeDocumentsLOISWebhooksLegal AIPersonal InjuryMass Torts

Properties

Name Type Description
contactId integer
firstName string
lastName string
fullName string
organization string
emails array
phones array
createdDate string
modifiedDate string
View JSON Schema on GitHub

JSON Schema

filevine-contact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/schemas/filevine/filevine-contact-schema.json",
  "title": "Filevine Contact",
  "description": "Schema for a Filevine contact card. Contacts represent the people and organizations associated with a project — clients, opposing parties, witnesses, experts, and third parties.",
  "type": "object",
  "required": ["contactId"],
  "properties": {
    "contactId": { "type": "integer", "format": "int64" },
    "firstName": { "type": "string" },
    "lastName": { "type": "string" },
    "fullName": { "type": "string" },
    "organization": { "type": "string" },
    "emails": { "type": "array", "items": { "type": "string", "format": "email" } },
    "phones": { "type": "array", "items": { "type": "string" } },
    "createdDate": { "type": "string", "format": "date-time" },
    "modifiedDate": { "type": "string", "format": "date-time" }
  }
}