{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api.stackshare.io/schemas/tool", "title": "StackShare Tool", "description": "A developer tool or technology tracked by StackShare", "type": "object", "properties": { "id": { "type": "string", "description": "StackShare tool identifier" }, "name": { "type": "string", "description": "Tool name (e.g., React, PostgreSQL, AWS)" }, "slug": { "type": "string", "description": "URL slug for the tool on stackshare.io" }, "description": { "type": "string", "description": "Short description of what the tool does" }, "websiteUrl": { "type": "string", "format": "uri", "description": "Official tool website" }, "githubUrl": { "type": "string", "format": "uri", "description": "GitHub repository URL" }, "category": { "type": "string", "description": "Tool category (e.g., Application and Data, DevOps)" }, "followers": { "type": "integer", "description": "Number of StackShare followers" } }, "required": ["id", "name"] }