Noun Project · JSON Structure

Noun Project Blocklist Id Request Structure

Request body for adding icon or collection IDs to the blocklist.

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

BlocklistIdRequest 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

blacklist overwrite

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-blocklist-id-request-structure.json",
  "name": "BlocklistIdRequest",
  "description": "Request body for adding icon or collection IDs to the blocklist.",
  "type": "object",
  "properties": {
    "blacklist": {
      "type": "array",
      "description": "Identifiers to add to the blocklist.",
      "items": {
        "type": "int32"
      },
      "minItems": 1,
      "maxItems": 1000,
      "example": [
        12345,
        67890
      ]
    },
    "overwrite": {
      "type": "boolean",
      "description": "When true, replaces the existing blocklist for this type entirely.",
      "default": false,
      "example": false
    }
  },
  "required": [
    "blacklist"
  ]
}