schemas

This directory contains detailed schema documentation for all globalMOO API response objects.

Core Objects

Common Fields

Most response objects include these standard fields:

{
    "id": 123,                                    // Unique identifier
    "created_at": "2025-01-31T10:00:00.000Z",    // Creation timestamp
    "updated_at": "2025-01-31T10:00:00.000Z",    // Last update timestamp
    "disabled_at": null                          // Optional disable timestamp
}

Timestamps

All timestamps follow these rules:

  • ISO 8601 format with millisecond precision

  • UTC timezone

  • Optional fields can be null

  • No future timestamps allowed

Last updated