Autocomplete suggestions for an icon search query.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/noun-project/refs/heads/main/json-schema/noun-project-autocomplete-response-schema.json", "title": "AutocompleteResponse", "description": "Autocomplete suggestions for an icon search query.", "type": "object", "properties": { "autocomplete": { "type": "array", "description": "Suggested search terms ranked by relevance.", "items": { "type": "string" }, "example": [ "rocket", "rocket ship", "rocket launch", "rocket science" ] }, "generated_at": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp of when the response was generated.", "example": "2026-05-28T14:00:00Z" } }, "required": [ "autocomplete" ] }