Service

An AbilityOne Procurement List service

Federal GovernmentDisability EmploymentProcurementNonprofitAccessibility

Properties

Name Type Description
id string Service identifier
serviceType string Type of service
description string Service description
location string Location where service is performed
state string State abbreviation
nonprofitAffiliate string Central nonprofit affiliate
performingAgency string Name of nonprofit agency performing the service
approvalDate string Date service was added to the Procurement List
status string Service status
View JSON Schema on GitHub

JSON Schema

procurement-list-api-service-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.abilityone.gov/schema/service.json",
  "title": "Service",
  "description": "An AbilityOne Procurement List service",
  "type": "object",
  "properties": {
    "id": {
      "description": "Service identifier",
      "type": "string",
      "example": "svc-00123"
    },
    "serviceType": {
      "description": "Type of service",
      "type": "string",
      "example": "Custodial"
    },
    "description": {
      "description": "Service description",
      "type": "string",
      "example": "Custodial services at federal building"
    },
    "location": {
      "description": "Location where service is performed",
      "type": "string",
      "example": "Pentagon, Arlington, VA"
    },
    "state": {
      "description": "State abbreviation",
      "type": "string",
      "example": "VA"
    },
    "nonprofitAffiliate": {
      "description": "Central nonprofit affiliate",
      "type": "string",
      "enum": [
        "NIB",
        "SourceAmerica"
      ]
    },
    "performingAgency": {
      "description": "Name of nonprofit agency performing the service",
      "type": "string",
      "example": "SERVICEMASTER"
    },
    "approvalDate": {
      "description": "Date service was added to the Procurement List",
      "type": "string",
      "format": "date",
      "example": "2010-06-01"
    },
    "status": {
      "description": "Service status",
      "type": "string",
      "enum": [
        "active",
        "deleted"
      ]
    }
  }
}