ProductSearchResponse

Paginated search results for Procurement List products

Federal GovernmentDisability EmploymentProcurementNonprofitAccessibility

Properties

Name Type Description
total integer Total matching products
offset integer Pagination offset
limit integer Page size
products array List of matching products
View JSON Schema on GitHub

JSON Schema

procurement-list-api-productsearchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.abilityone.gov/schema/productsearchresponse.json",
  "title": "ProductSearchResponse",
  "description": "Paginated search results for Procurement List products",
  "type": "object",
  "properties": {
    "total": {
      "description": "Total matching products",
      "type": "integer",
      "example": 48
    },
    "offset": {
      "description": "Pagination offset",
      "type": "integer",
      "example": 0
    },
    "limit": {
      "description": "Page size",
      "type": "integer",
      "example": 25
    },
    "products": {
      "description": "List of matching products",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Product"
      }
    }
  }
}