{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/reqres/refs/heads/main/json-schema/reqres-register-response-schema.json", "title": "RegisterResponse", "description": "RegisterResponse schema from ReqRes API", "type": "object", "properties": { "id": { "type": "integer" }, "token": { "type": "string" } }, "required": [ "token" ], "additionalProperties": true }