Genderize.io · Schema

ErrorResponse

Error response returned by the Genderize.io API for 4xx status codes.

GenderNamesPredictionDemographicsMachine LearningStatistics

Properties

Name Type Description
error string Human-readable description of the error.
View JSON Schema on GitHub

JSON Schema

error-response.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/genderize/main/json-schema/error-response.json",
  "title": "ErrorResponse",
  "description": "Error response returned by the Genderize.io API for 4xx status codes.",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "Human-readable description of the error.",
      "examples": [
        "Missing 'name' parameter",
        "Invalid API key",
        "Request limit reached"
      ]
    }
  },
  "required": ["error"],
  "additionalProperties": false
}