WaitingPeriods

Abortion waiting period restrictions in a US state, covering mandatory time between counseling and abortion care.

AbortionPoliciesHealthcareGovernment

Properties

Name Type Description
waiting_period_hours integer Hours a person must wait between receiving state-mandated counseling and obtaining abortion. Null means no waiting period.
counseling_visits integer 1=counseling required by state; 2=counseling must be at the facility, requiring two clinic trips.
exception_health string Conditions under which waiting period may be waived.
waiting_period_notes string Additional notes on unusual waiting period policies.
counseling_waived_condition string Conditions under which counseling requirement can be waived.
Last Updated string Date this policy record was last updated.
View JSON Schema on GitHub

JSON Schema

waiting-periods-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/abortion-policy-api/refs/heads/main/json-schema/waiting-periods-schema.json",
  "title": "WaitingPeriods",
  "description": "Abortion waiting period restrictions in a US state, covering mandatory time between counseling and abortion care.",
  "type": "object",
  "properties": {
    "waiting_period_hours": {
      "type": "integer",
      "nullable": true,
      "description": "Hours a person must wait between receiving state-mandated counseling and obtaining abortion. Null means no waiting period.",
      "example": 24
    },
    "counseling_visits": {
      "type": "integer",
      "nullable": true,
      "description": "1=counseling required by state; 2=counseling must be at the facility, requiring two clinic trips.",
      "example": 1
    },
    "exception_health": {
      "type": "string",
      "nullable": true,
      "description": "Conditions under which waiting period may be waived.",
      "example": "Medical emergency"
    },
    "waiting_period_notes": {
      "type": "string",
      "nullable": true,
      "description": "Additional notes on unusual waiting period policies.",
      "example": "Waiting period waived in medical emergencies."
    },
    "counseling_waived_condition": {
      "type": "string",
      "nullable": true,
      "description": "Conditions under which counseling requirement can be waived.",
      "example": "Medical emergency"
    },
    "Last Updated": {
      "type": "string",
      "description": "Date this policy record was last updated.",
      "example": "2025-01-15"
    }
  }
}