CMiC · Schema

CMiC Construction Project

Schema representing a construction project in the CMiC ERP system.

ConstructionERPFinanceProject Management

Properties

Name Type Description
projectId string Unique project identifier in CMiC
projectName string Project name
companyCode string CMiC company code for multi-company setups
description string Project description
status string Project status
projectManager string Project manager name or employee ID
owner string Project owner organization name
startDate string Project start date
endDate string Project completion date
address object Project site address
financials object Project financial summary
jobs array List of job IDs associated with this project
createdAt string
updatedAt string
View JSON Schema on GitHub

JSON Schema

cmic-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.cmic.ca/rest/schemas/project",
  "title": "CMiC Construction Project",
  "description": "Schema representing a construction project in the CMiC ERP system.",
  "type": "object",
  "required": ["projectId", "projectName", "companyCode"],
  "properties": {
    "projectId": {
      "type": "string",
      "description": "Unique project identifier in CMiC"
    },
    "projectName": {
      "type": "string",
      "description": "Project name",
      "maxLength": 255
    },
    "companyCode": {
      "type": "string",
      "description": "CMiC company code for multi-company setups"
    },
    "description": {
      "type": "string",
      "description": "Project description"
    },
    "status": {
      "type": "string",
      "description": "Project status",
      "enum": ["ACTIVE", "INACTIVE", "COMPLETE", "BIDDING", "ON_HOLD"]
    },
    "projectManager": {
      "type": "string",
      "description": "Project manager name or employee ID"
    },
    "owner": {
      "type": "string",
      "description": "Project owner organization name"
    },
    "startDate": {
      "type": "string",
      "format": "date",
      "description": "Project start date"
    },
    "endDate": {
      "type": "string",
      "format": "date",
      "description": "Project completion date"
    },
    "address": {
      "$ref": "#/$defs/Address",
      "description": "Project site address"
    },
    "financials": {
      "$ref": "#/$defs/ProjectFinancials",
      "description": "Project financial summary"
    },
    "jobs": {
      "type": "array",
      "description": "List of job IDs associated with this project",
      "items": {
        "type": "string"
      }
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    }
  },
  "$defs": {
    "Address": {
      "type": "object",
      "properties": {
        "street": { "type": "string" },
        "city": { "type": "string" },
        "state": { "type": "string", "pattern": "^[A-Z]{2}$" },
        "postalCode": { "type": "string" },
        "country": { "type": "string", "default": "US" }
      }
    },
    "ProjectFinancials": {
      "type": "object",
      "properties": {
        "contractAmount": {
          "type": "number",
          "format": "double",
          "description": "Original contract amount in USD",
          "minimum": 0
        },
        "originalBudget": {
          "type": "number",
          "format": "double",
          "description": "Original approved budget",
          "minimum": 0
        },
        "revisedBudget": {
          "type": "number",
          "format": "double",
          "description": "Current revised budget including change orders",
          "minimum": 0
        },
        "actualCost": {
          "type": "number",
          "format": "double",
          "description": "Total actual cost incurred to date",
          "minimum": 0
        },
        "committedCost": {
          "type": "number",
          "format": "double",
          "description": "Total committed costs (POs, subcontracts)",
          "minimum": 0
        },
        "costToComplete": {
          "type": "number",
          "format": "double",
          "description": "Estimated cost to complete the project"
        },
        "variance": {
          "type": "number",
          "format": "double",
          "description": "Budget variance (positive = under budget)"
        },
        "percentComplete": {
          "type": "number",
          "format": "double",
          "description": "Project completion percentage",
          "minimum": 0,
          "maximum": 100
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/cmic-project"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.