Agave · JSON Structure

Unified Api Project Structure

A construction project record from the linked source system.

Type: object Properties: 11
AccountingConstructionIntegration

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

Properties

id source_id name number status address start_date estimated_completion_date total_budget created_at updated_at

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-project-structure.json",
  "name": "Project",
  "description": "A construction project record from the linked source system.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Agave unified project identifier.",
      "example": "proj-500123"
    },
    "source_id": {
      "type": "string",
      "description": "Project identifier in the source system.",
      "example": 12345
    },
    "name": {
      "type": "string",
      "description": "Project name.",
      "example": "Downtown Office Building"
    },
    "number": {
      "type": "string",
      "description": "Project number or code.",
      "example": "2025-001"
    },
    "status": {
      "type": "string",
      "description": "Project status.",
      "enum": [
        "active",
        "inactive",
        "completed"
      ],
      "example": "active"
    },
    "address": {
      "type": "string",
      "description": "Project address.",
      "example": "123 Main St, San Francisco, CA 94105"
    },
    "start_date": {
      "type": "date",
      "description": "Project start date.",
      "example": "2025-01-15"
    },
    "estimated_completion_date": {
      "type": "date",
      "description": "Estimated project completion date.",
      "example": "2026-06-30"
    },
    "total_budget": {
      "type": "double",
      "description": "Total approved project budget in USD.",
      "example": 5000000.0
    },
    "created_at": {
      "type": "datetime",
      "description": "Timestamp when the record was created.",
      "example": "2025-01-15T09:00:00Z"
    },
    "updated_at": {
      "type": "datetime",
      "description": "Timestamp when the record was last updated.",
      "example": "2025-04-01T12:00:00Z"
    }
  }
}