{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://orbit.love/schemas/organization.json", "title": "Organization", "description": "Orbit organization schema", "type": "object", "properties": { "lifecycle_stage": { "type": "string", "description": "The current stage of the organization in the marketing or sales process." }, "deal_closed_date": { "type": "string", "description": "The date the organization became a customer." }, "price_plan": { "type": "string", "description": "The pricing plan the organization is on." }, "crm_uid": { "type": "string", "description": "The unique identifier of the organization in your CRM." }, "crm_url": { "type": "string", "description": "A link to the organization profile in your CRM." }, "owner_name": { "type": "string", "description": "The name of the team member who is in charge of the organization." }, "owner_email": { "type": "string", "description": "The email of the team member who is in charge of the organization." }, "source": { "type": "string", "description": "The name of the CRM you use for tracking the organization." } }, "required": [ "lifecycle_stage", "crm_url", "source" ] }