Share feedback
Answers are generated based on the documentation.

Schema

PullData

Type: object

pulls

Type: array | null

Pull statistics for the selected interval. Null when no records are returned.
Array item

Schema: PullModel

All schema constraints and annotations
{
  "description": "Pull statistics for the selected interval. Null when no records are returned.",
  "items": {
    "$ref": "#/components/schemas/PullModel"
  },
  "type": [
    "array",
    "null"
  ]
}
All schema constraints and annotations
{
  "examples": [
    {
      "pulls": [
        {
          "end": "2022-08-07T00:00:00Z",
          "ipCount": 10,
          "pullCount": 11,
          "repo": "neo4j-admin",
          "start": "2022-08-01T00:00:00Z"
        },
        {
          "end": "2022-08-14T00:00:00Z",
          "ipCount": 10,
          "pullCount": 11,
          "repo": "neo4j-admin",
          "start": "2022-08-08T00:00:00Z"
        }
      ]
    },
    {
      "pulls": null
    }
  ],
  "properties": {
    "pulls": {
      "description": "Pull statistics for the selected interval. Null when no records are returned.",
      "items": {
        "$ref": "#/components/schemas/PullModel"
      },
      "type": [
        "array",
        "null"
      ]
    }
  },
  "type": "object"
}