Noun Project · JSON Structure

Noun Project Usage Response Structure

Wrapper for the client usage response.

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

UsageResponse 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

usage 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-usage-response-structure.json",
  "name": "UsageResponse",
  "description": "Wrapper for the client usage response.",
  "type": "object",
  "properties": {
    "usage": {
      "type": "object",
      "description": "API key usage and quota information.",
      "properties": {
        "hourly": {
          "$ref": "#/components/schemas/UsageWindow"
        },
        "daily": {
          "$ref": "#/components/schemas/UsageWindow"
        },
        "monthly": {
          "$ref": "#/components/schemas/UsageWindow"
        }
      }
    },
    "generated_at": {
      "type": "datetime",
      "description": "ISO 8601 timestamp of when the response was generated.",
      "example": "2026-05-28T14:00:00Z"
    }
  },
  "required": [
    "usage"
  ]
}