Software Advice · Schema

Software Advice Review

JSON Schema for a Software Advice user review of a software product

B2BSoftware RecommendationsSoftware ReviewsAnalyticsGartner

Properties

Name Type Description
id string Unique identifier for the review
product object
rating number Overall rating from 1 to 5 stars
reviewTitle string Title of the review
reviewBody string Full text of the review
pros string What the reviewer liked about the product
cons string What the reviewer disliked about the product
reviewer object
ratings object
verified boolean Whether the reviewer has been verified
createdAt string Date and time the review was submitted
category string Software category (e.g., CRM, ERP, Project Management)
View JSON Schema on GitHub

JSON Schema

software-advice-review-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/software-advice/json-schema/software-advice-review-schema.json",
  "title": "Software Advice Review",
  "description": "JSON Schema for a Software Advice user review of a software product",
  "type": "object",
  "required": ["product", "rating", "reviewTitle"],
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the review"
    },
    "product": {
      "$ref": "#/definitions/Product"
    },
    "rating": {
      "type": "number",
      "minimum": 1,
      "maximum": 5,
      "description": "Overall rating from 1 to 5 stars"
    },
    "reviewTitle": {
      "type": "string",
      "description": "Title of the review"
    },
    "reviewBody": {
      "type": "string",
      "description": "Full text of the review"
    },
    "pros": {
      "type": "string",
      "description": "What the reviewer liked about the product"
    },
    "cons": {
      "type": "string",
      "description": "What the reviewer disliked about the product"
    },
    "reviewer": {
      "$ref": "#/definitions/Reviewer"
    },
    "ratings": {
      "$ref": "#/definitions/DetailedRatings"
    },
    "verified": {
      "type": "boolean",
      "description": "Whether the reviewer has been verified"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time the review was submitted"
    },
    "category": {
      "type": "string",
      "description": "Software category (e.g., CRM, ERP, Project Management)"
    }
  },
  "definitions": {
    "Product": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "description": "Unique product identifier"
        },
        "name": {
          "type": "string",
          "description": "Name of the software product"
        },
        "vendor": {
          "type": "string",
          "description": "Name of the software vendor"
        },
        "category": {
          "type": "string",
          "description": "Primary software category"
        },
        "url": {
          "type": "string",
          "format": "uri",
          "description": "URL to the product's Software Advice page"
        }
      }
    },
    "Reviewer": {
      "type": "object",
      "properties": {
        "industry": {
          "type": "string",
          "description": "Industry of the reviewer's organization"
        },
        "companySize": {
          "type": "string",
          "enum": ["1-10", "11-50", "51-200", "201-1000", "1001+"],
          "description": "Size of the reviewer's company"
        },
        "role": {
          "type": "string",
          "description": "Job role or title of the reviewer"
        },
        "usageDuration": {
          "type": "string",
          "description": "How long the reviewer has used the product"
        }
      }
    },
    "DetailedRatings": {
      "type": "object",
      "properties": {
        "easeOfUse": {
          "type": "number",
          "minimum": 1,
          "maximum": 5
        },
        "features": {
          "type": "number",
          "minimum": 1,
          "maximum": 5
        },
        "customerSupport": {
          "type": "number",
          "minimum": 1,
          "maximum": 5
        },
        "valueForMoney": {
          "type": "number",
          "minimum": 1,
          "maximum": 5
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/software-advice-review"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.