AgeChecker.Net · Schema

SessionList

SessionList schema from AgeChecker.Net API

Age VerificationIdentityComplianceRegulatoryE-Commerce

Properties

Name Type Description
sessions array
total integer Total number of matching sessions.
limit integer Page size.
offset integer Page offset.
View JSON Schema on GitHub

JSON Schema

age-verification-session-list-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-list-schema.json",
  "title": "SessionList",
  "description": "SessionList schema from AgeChecker.Net API",
  "type": "object",
  "properties": {
    "sessions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Session"
      },
      "example": [
        "example_value"
      ]
    },
    "total": {
      "type": "integer",
      "description": "Total number of matching sessions.",
      "example": 1
    },
    "limit": {
      "type": "integer",
      "description": "Page size.",
      "example": 1
    },
    "offset": {
      "type": "integer",
      "description": "Page offset.",
      "example": 1
    }
  }
}