StackShare · Schema

StackShare Tool

A developer tool or technology tracked by StackShare

Developer ToolsSoftware DiscoveryTech Stacks

Properties

Name Type Description
id string StackShare tool identifier
name string Tool name (e.g., React, PostgreSQL, AWS)
slug string URL slug for the tool on stackshare.io
description string Short description of what the tool does
websiteUrl string Official tool website
githubUrl string GitHub repository URL
category string Tool category (e.g., Application and Data, DevOps)
followers integer Number of StackShare followers
View JSON Schema on GitHub

JSON Schema

stackshare-tool-schema.json Raw ↑
{
  "$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"]
}