ERPNext · Schema

DocList

A paginated list of Frappe/ERPNext documents returned by the GET /resource/{DocType} endpoint.

ERPEnterprise Resource PlanningAccountingInventoryManufacturingSalesCRMHROpen Source

Properties

Name Type Description
data array Array of documents matching the query.
View JSON Schema on GitHub

JSON Schema

doclist.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/erpnext/main/json-schema/doclist.json",
  "title": "DocList",
  "description": "A paginated list of Frappe/ERPNext documents returned by the GET /resource/{DocType} endpoint.",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of documents matching the query.",
      "items": {
        "$ref": "doctype.json"
      }
    }
  },
  "required": ["data"]
}