Unified.to · Schema

CrmPipeline

IntegrationsUnified API

Properties

Name Type Description
created_at string
deal_probability number
display_order number
id string
is_active boolean
name string
raw object
stages object
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-crmpipeline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CrmPipeline",
  "title": "CrmPipeline",
  "properties": {
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "deal_probability": {
      "type": "number"
    },
    "display_order": {
      "type": "number"
    },
    "id": {
      "type": "string"
    },
    "is_active": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "stages": {
      "$ref": "#/components/schemas/property_CrmPipeline_stages"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}