AgeChecker.Net · JSON Structure

Age Verification Session List Structure

SessionList schema from AgeChecker.Net API

Type: object Properties: 4
Age VerificationIdentityComplianceRegulatoryE-Commerce

SessionList is a JSON Structure definition published by AgeChecker.Net, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

sessions total limit offset

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/agechecker-net/refs/heads/main/json-structure/age-verification-session-list-structure.json",
  "name": "SessionList",
  "description": "SessionList schema from AgeChecker.Net API",
  "type": "object",
  "properties": {
    "sessions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Session"
      },
      "example": [
        "example_value"
      ]
    },
    "total": {
      "type": "int32",
      "description": "Total number of matching sessions.",
      "example": 1
    },
    "limit": {
      "type": "int32",
      "description": "Page size.",
      "example": 1
    },
    "offset": {
      "type": "int32",
      "description": "Page offset.",
      "example": 1
    }
  }
}