{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserListItem", "title": "UserListItem", "type": "object", "required": [ "userId" ], "properties": { "userId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OLzUyMjNiYmVkLTQyYzktNDU0ZC1hMWYzLTdmYWQ1Y2M3ZTZlMw", "description": "User ID associated with the validation response." }, "impacts": { "type": "array", "items": { "$ref": "#/components/schemas/ErrorOrImpactItem" }, "description": "List of impacts for the user moves." }, "errors": { "type": "array", "items": { "$ref": "#/components/schemas/ErrorOrImpactItem" }, "description": "List of errors for the user moves." } } }