{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/auth0/main/json-schema/auth0-refreshtoken-schema.json", "title": "Auth0 RefreshToken", "description": "JSON Schema for Auth0 RefreshToken entity, extracted from the Auth0 Management API OpenAPI v2.0 spec (component: RefreshTokenDate).", "oneOf": [ { "type": "string", "description": "The date and time when the refresh token was created", "format": "date-time" }, { "$ref": "#/components/schemas/RefreshTokenDateObject" }, { "type": "null" } ] }