SessionList schema from AgeChecker.Net API
{ "$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 } } }