{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserSearchResult", "title": "UserSearchResult", "type": "object", "properties": { "matches": { "type": "array", "description": "Array of matching users with their identifiers.", "items": { "type": "object", "properties": { "user_id": { "type": "string", "description": "The user's user_id." }, "amplitude_id": { "type": "integer", "format": "int64", "description": "The user's Amplitude internal ID." } } } } } }