SAMHSA Treatment Facility

Schema for a SAMHSA-licensed behavioral health treatment facility as returned from the Treatment Locator API.

Federal GovernmentPublic HealthBehavioral HealthSubstance Use DisordersMental HealthOpen DataHealthcare

Properties

Name Type Description
name1 string Primary facility name
name2 string Secondary name or DBA
street1 string Street address line 1
street2 string Street address line 2
city string City where the facility is located
state string Two-letter US state abbreviation
zip string ZIP or ZIP+4 code
phone string Primary contact phone number
websiteUrl string Facility website URL
latitude number Decimal latitude
longitude number Decimal longitude
category string Service category
typeDescription string Detailed facility type (e.g., Outpatient, Residential, Hospital Inpatient)
services array Treatment services offered (detox, MAT, counseling, etc.)
paymentOptions array Accepted payment methods and insurance types
medicaid string Whether the facility accepts Medicaid
medicare string Whether the facility accepts Medicare
slidingFee string Whether sliding scale fees are available
noFee string Whether free treatment is available
populationsServed array Special populations served (veterans, LGBTQ+, adolescents, etc.)
View JSON Schema on GitHub

JSON Schema

samhsa-treatment-facility-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.samhsa.gov/schemas/treatment-facility",
  "title": "SAMHSA Treatment Facility",
  "description": "Schema for a SAMHSA-licensed behavioral health treatment facility as returned from the Treatment Locator API.",
  "type": "object",
  "required": ["name1", "city", "state"],
  "properties": {
    "name1": {
      "type": "string",
      "description": "Primary facility name"
    },
    "name2": {
      "type": "string",
      "description": "Secondary name or DBA"
    },
    "street1": {
      "type": "string",
      "description": "Street address line 1"
    },
    "street2": {
      "type": "string",
      "description": "Street address line 2"
    },
    "city": {
      "type": "string",
      "description": "City where the facility is located"
    },
    "state": {
      "type": "string",
      "description": "Two-letter US state abbreviation",
      "pattern": "^[A-Z]{2}$"
    },
    "zip": {
      "type": "string",
      "description": "ZIP or ZIP+4 code"
    },
    "phone": {
      "type": "string",
      "description": "Primary contact phone number"
    },
    "websiteUrl": {
      "type": "string",
      "format": "uri",
      "description": "Facility website URL"
    },
    "latitude": {
      "type": "number",
      "minimum": -90,
      "maximum": 90,
      "description": "Decimal latitude"
    },
    "longitude": {
      "type": "number",
      "minimum": -180,
      "maximum": 180,
      "description": "Decimal longitude"
    },
    "category": {
      "type": "string",
      "description": "Service category",
      "enum": ["Substance Abuse", "Mental Health", "Co-Occurring Disorders"]
    },
    "typeDescription": {
      "type": "string",
      "description": "Detailed facility type (e.g., Outpatient, Residential, Hospital Inpatient)"
    },
    "services": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Treatment services offered (detox, MAT, counseling, etc.)"
    },
    "paymentOptions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Accepted payment methods and insurance types"
    },
    "medicaid": {
      "type": "string",
      "enum": ["Y", "N"],
      "description": "Whether the facility accepts Medicaid"
    },
    "medicare": {
      "type": "string",
      "enum": ["Y", "N"],
      "description": "Whether the facility accepts Medicare"
    },
    "slidingFee": {
      "type": "string",
      "enum": ["Y", "N"],
      "description": "Whether sliding scale fees are available"
    },
    "noFee": {
      "type": "string",
      "enum": ["Y", "N"],
      "description": "Whether free treatment is available"
    },
    "populationsServed": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Special populations served (veterans, LGBTQ+, adolescents, etc.)"
    }
  }
}