Agave · JSON Structure

Unified Api Budget List Structure

Paginated list of budget line items.

Type: object Properties: 3
AccountingConstructionIntegration

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

Properties

data next_cursor count

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-budget-list-structure.json",
  "name": "BudgetList",
  "description": "Paginated list of budget line items.",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of budget records.",
      "items": {
        "$ref": "#/components/schemas/Budget"
      },
      "example": [
        "example_value"
      ]
    },
    "next_cursor": {
      "type": "string",
      "description": "Cursor for the next page.",
      "example": "eyJpZCI6MTIzfQ=="
    },
    "count": {
      "type": "int32",
      "description": "Number of records returned.",
      "example": 100
    }
  }
}