Noun Project · JSON Structure

Noun Project Autocomplete Response Structure

Autocomplete suggestions for an icon search query.

Type: object Properties: 2 Required: 1
Art And DesignIconsSVGVisual LanguageDesign AssetsPublic APIs

AutocompleteResponse is a JSON Structure definition published by Noun Project, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

autocomplete generated_at

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/noun-project/refs/heads/main/json-structure/noun-project-autocomplete-response-structure.json",
  "name": "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": "datetime",
      "description": "ISO 8601 timestamp of when the response was generated.",
      "example": "2026-05-28T14:00:00Z"
    }
  },
  "required": [
    "autocomplete"
  ]
}