AgeChecker.Net · Schema

Session

Session schema from AgeChecker.Net API

Age VerificationIdentityComplianceRegulatoryE-Commerce

Properties

Name Type Description
session_id string Unique session identifier.
status string Current session status.
result string Verification result.
age_verified boolean Whether age was verified.
requires_photo_id boolean Whether photo ID was required.
created_at string When the session was created.
completed_at string When the session was completed.
View JSON Schema on GitHub

JSON Schema

age-verification-session-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agechecker-net/refs/heads/main/json-schema/age-verification-session-schema.json",
  "title": "Session",
  "description": "Session schema from AgeChecker.Net API",
  "type": "object",
  "properties": {
    "session_id": {
      "type": "string",
      "description": "Unique session identifier.",
      "example": "500123"
    },
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "completed",
        "expired"
      ],
      "description": "Current session status.",
      "example": "pending"
    },
    "result": {
      "type": "string",
      "enum": [
        "pass",
        "fail"
      ],
      "description": "Verification result.",
      "example": "pass"
    },
    "age_verified": {
      "type": "boolean",
      "description": "Whether age was verified.",
      "example": true
    },
    "requires_photo_id": {
      "type": "boolean",
      "description": "Whether photo ID was required.",
      "example": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the session was created.",
      "example": "2025-03-15T14:30:00Z"
    },
    "completed_at": {
      "type": "string",
      "format": "date-time",
      "description": "When the session was completed.",
      "example": "2025-03-15T14:30:00Z"
    }
  }
}