ServiceSearchResponse

Paginated search results for Procurement List services

Federal GovernmentDisability EmploymentProcurementNonprofitAccessibility

Properties

Name Type Description
total integer
offset integer
limit integer
services array
View JSON Schema on GitHub

JSON Schema

procurement-list-api-servicesearchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.abilityone.gov/schema/servicesearchresponse.json",
  "title": "ServiceSearchResponse",
  "description": "Paginated search results for Procurement List services",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "example": 12
    },
    "offset": {
      "type": "integer",
      "example": 0
    },
    "limit": {
      "type": "integer",
      "example": 25
    },
    "services": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Service"
      }
    }
  }
}