changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "category": {
+ "description": "Limit results to one product category.",
+ "enum": [
+ "Developer Tools",
+ "Frameworks & Libraries",
+ "Languages & Runtimes",
+ "Games",
+ "Operating Systems",
+ "Browsers",
+ "Communication",
+ "Media",
+ "AI",
+ "Design Tools",
+ "Productivity",
+ "Firmware",
+ "Drivers"
+ ],
+ "type": "string"
+ },
+ "note": {
+ "description": "Present when nothing matched.",
+ "type": "string"
+ },
+ "products": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "category": {
+ "enum": [
+ "Developer Tools",
+ "Frameworks & Libraries",
+ "Languages & Runtimes",
+ "Games",
+ "Operating Systems",
+ "Browsers",
+ "Communication",
+ "Media",
+ "AI",
+ "Design Tools",
+ "Productivity",
+ "Firmware",
+ "Drivers"
+ ],
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ },
+ "homepage": {
+ "description": "The vendor's own site.",
+ "type": "string"
+ },
+ "labels": {
+ "description": "Provenance to keep with any quote, e.g. “Sample data”.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "name": {
+ "type": "string"
+ },
+ "platforms": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "url": {
+ "description": "This product's page on What's New.",
+ "type": "string"
+ },
+ "vendor": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "name",
+ "vendor",
+ "category",
+ "description",
+ "url",
+ "homepage"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "query": {
+ "description": "The query as searched — trimmed and capped.",
+ "type": "string"
+ },
+ "releases": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "changes": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "category": {
+ "enum": [
+ "added",
+ "changed",
+ "fixed",
+ "removed",
+ "deprecated",
+ "security"
+ ],
+ "type": "string"
+ },
+ "text": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "category",
+ "text"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "channel": {
+ "description": "The source's own classification, e.g. “longterm”.",
+ "type": "string"
+ },
+ "date": {
+ "description": "ISO 8601 timestamp.",
+ "type": "string"
+ },
+ "labels": {
+ "description": "Provenance to keep with any quote, e.g. “Pre-release”.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "prerelease": {
+ "const": true,
+ "type": "boolean"
+ },
+ "product": {
+ "additionalProperties": false,
+ "properties": {
+ "name": {
+ "type": "string"
+ },
+ "slug": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "name"
+ ],
+ "type": "object"
+ },
+ "sourceUrl": {
+ "description": "The vendor's own release notes.",
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "description": "This release's page on What's New.",
+ "type": "string"
+ },
+ "version": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "date",
+ "url",
+ "sourceUrl",
+ "product"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "query",
+ "products",
+ "releases"
+ ],
+ "type": "object"
+}