Merge · Schema

Project

# The Project Object ### Description The `Project` object is used to track and manage time, costs, resources, and revenue for specific initiatives or work efforts. It provides classification on transactions for allocating expenses, revenue, and activities to a specific project for financial reporting. ### Usage Example Fetch from the `GET Project` endpoint and view project information.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
id string
remote_id stringnull The third-party API ID of the matching object.
created_at string The datetime that this object was created by Merge.
modified_at string The datetime that this object was modified by Merge.
name string The project’s name
is_active boolean `True` if the project is active, `False` if the project is not active.
company stringnull The subsidiary that the project belongs to.
contact stringnull The supplier, or customer involved in the project.
field_mappings object
remote_data arraynull
View JSON Schema on GitHub

JSON Schema

merge-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Project",
  "title": "Project",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "remote_id": {
      "type": [
        "string",
        "null"
      ],
      "description": "The third-party API ID of the matching object."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "The datetime that this object was created by Merge."
    },
    "modified_at": {
      "type": "string",
      "format": "date-time",
      "description": "The datetime that this object was modified by Merge."
    },
    "name": {
      "type": "string",
      "description": "The project\u2019s name"
    },
    "is_active": {
      "type": "boolean",
      "description": "`True` if the project is active, `False` if the project is not active."
    },
    "company": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid",
      "description": "The subsidiary that the project belongs to."
    },
    "contact": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid",
      "description": "The supplier, or customer involved in the project."
    },
    "field_mappings": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/ProjectFieldMappings"
        },
        {
          "type": "null"
        }
      ]
    },
    "remote_data": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "$ref": "#/components/schemas/RemoteData"
      }
    }
  },
  "required": [
    "name"
  ],
  "description": "# The Project Object\n### Description\nThe `Project` object is used to track and manage time, costs, resources, and revenue for specific initiatives or work efforts.\nIt provides classification on transactions for allocating expenses, revenue, and activities to a specific project for financial reporting.\n\n### Usage Example\nFetch from the `GET Project` endpoint and view project information."
}