{
  "openapi": "3.0.1",
  "info": {
    "title": "Texas Childcare Licensing Records — Official HHSC Data",
    "description": "Every licensed/registered childcare and residential childcare operation in Texas — capacity, license status, inspection and deficiency counts, optional per-facility violation narratives — straight from the official HHSC Child Care Licensing datasets, with a source link on every record.",
    "version": "0.1",
    "x-build-id": "SNgwGH3UshuhgsXqa"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/extensive_necklace_zmp~texas-childcare-licensing-records/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-extensive_necklace_zmp-texas-childcare-licensing-records",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/extensive_necklace_zmp~texas-childcare-licensing-records/runs": {
      "post": {
        "operationId": "runs-sync-extensive_necklace_zmp-texas-childcare-licensing-records",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/extensive_necklace_zmp~texas-childcare-licensing-records/run-sync": {
      "post": {
        "operationId": "run-sync-extensive_necklace_zmp-texas-childcare-licensing-records",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "cities": {
            "title": "Cities",
            "type": "array",
            "description": "Only operations in these Texas cities (e.g. AUSTIN, HOUSTON, SAN ANTONIO — case doesn't matter). Leave empty for statewide.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "counties": {
            "title": "Counties",
            "type": "array",
            "description": "Only operations in these Texas counties (e.g. TRAVIS, HARRIS — county name without the word 'County'). Leave empty for all counties.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "operationTypes": {
            "title": "Operation types",
            "type": "array",
            "description": "Which of HHSC's 6 operation types to include. Leave empty for all. Licensed Centers are classic daycare centers; Licensed/Registered Child-Care Homes and Listed Family Homes are home-based care; General Residential Operations and Child Placing Agencies are residential/foster care.",
            "items": {
              "type": "string",
              "enum": [
                "Licensed Center",
                "Licensed Child-Care Home",
                "Registered Child-Care Home",
                "Listed Family Home",
                "General Residential Operation",
                "Child Placing Agency"
              ],
              "enumTitles": [
                "Licensed Center (daycare centers)",
                "Licensed Child-Care Home",
                "Registered Child-Care Home",
                "Listed Family Home",
                "General Residential Operation (residential care)",
                "Child Placing Agency (foster/adoption)"
              ]
            },
            "default": []
          },
          "nameSearch": {
            "title": "Operation name contains",
            "type": "string",
            "description": "Case-insensitive substring match on the operation's name. Leave empty for all operations."
          },
          "openOnly": {
            "title": "Open operations only",
            "type": "boolean",
            "description": "Only operations the state currently marks open and not temporarily closed. Off by default so you see everything the state publishes.",
            "default": false
          },
          "subsidizedOnly": {
            "title": "Accepts child care subsidies only",
            "type": "boolean",
            "description": "Only operations the state marks as accepting child care subsidies (CCS).",
            "default": false
          },
          "minHighRiskDeficiencies": {
            "title": "Minimum high-risk deficiencies",
            "minimum": 0,
            "type": "integer",
            "description": "Only operations whose high + medium-high deficiency counts (the state's own counters) total at least this many. Use 1 to get every operation with any high-risk finding on record."
          },
          "includeViolations": {
            "title": "Include violation details",
            "type": "boolean",
            "description": "Attach each operation's cited violations from HHSC's Non-Compliance dataset: the standard violated, the state's risk level, the inspector's narrative, and correction dates. Adds roughly 1 second per 100 operations to the run.",
            "default": false
          },
          "maxViolationsPerOperation": {
            "title": "Max violations per operation",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Newest-first cap on attached violations per operation (violations_total always reports the full count).",
            "default": 20
          },
          "maxRecords": {
            "title": "Max records",
            "minimum": 1,
            "maximum": 50000,
            "type": "integer",
            "description": "Stop after this many operations. The full statewide dataset is about 15,000 operations.",
            "default": 20000
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}