changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "tool": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "askingPriceUsd": {
+ "type": "number"
+ },
+ "category": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ },
+ "faviconUrl": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "forSale": {
+ "const": true,
+ "type": "boolean"
+ },
+ "launchDate": {
+ "description": "ISO 8601 timestamp of the real launch date.",
+ "type": "string"
+ },
+ "logoUrl": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "name": {
+ "type": "string"
+ },
+ "ogImageUrl": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "revenueVerifiedAt": {
+ "description": "ISO 8601 timestamp of the last Stripe verification.",
+ "type": "string"
+ },
+ "selfReported": {
+ "const": true,
+ "description": "Marks selfReportedMrrUsd as unverified. Never report it as verified.",
+ "type": "boolean"
+ },
+ "selfReportedMrrUsd": {
+ "description": "Present only when the figure is the maker's own claim.",
+ "type": "number"
+ },
+ "tagline": {
+ "type": "string"
+ },
+ "toolUrl": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ },
+ "verifiedMrrUsd": {
+ "description": "Present only when the maker connected Stripe.",
+ "type": "number"
+ }
+ },
+ "required": [
+ "name",
+ "tagline",
+ "description",
+ "url",
+ "category",
+ "launchDate",
+ "toolUrl",
+ "logoUrl",
+ "faviconUrl",
+ "ogImageUrl"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "null when the slug does not resolve to a live listing on this site."
+ }
+ },
+ "required": [
+ "tool"
+ ],
+ "type": "object"
+}