Agave · JSON Structure

Unified Api Cost Code Structure

A job cost code for categorizing construction costs.

Type: object Properties: 5
AccountingConstructionIntegration

CostCode is a JSON Structure definition published by Agave, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id project_id code description cost_type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agave/refs/heads/main/json-structure/unified-api-cost-code-structure.json",
  "name": "CostCode",
  "description": "A job cost code for categorizing construction costs.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Cost code identifier.",
      "example": "cc-445566"
    },
    "project_id": {
      "type": "string",
      "description": "Associated project identifier.",
      "example": "proj-500123"
    },
    "code": {
      "type": "string",
      "description": "Cost code value.",
      "example": "03-1000"
    },
    "description": {
      "type": "string",
      "description": "Cost code description.",
      "example": "Concrete"
    },
    "cost_type": {
      "type": "string",
      "description": "Cost type classification.",
      "enum": [
        "labor",
        "material",
        "equipment",
        "subcontract",
        "other"
      ],
      "example": "material"
    }
  }
}