From ffe4d5ef7976e752a827b0e6e9bff27393691c36 Mon Sep 17 00:00:00 2001 From: Matias Benedetto Date: Fri, 23 Feb 2024 10:11:19 -0300 Subject: [PATCH] update schema to accommodate the changes made in wp_register_font_collection: https://github.com/WordPress/wordpress-develop/pull/6130 --- schemas/json/font-collection.json | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/schemas/json/font-collection.json b/schemas/json/font-collection.json index 1ed152e1a9990e..627fdf978c0501 100644 --- a/schemas/json/font-collection.json +++ b/schemas/json/font-collection.json @@ -100,14 +100,6 @@ "description": "JSON schema URI for font-collection.json.", "type": "string" }, - "name": { - "type": "string", - "description": "Name of the font collection." - }, - "description": { - "type": "string", - "description": "Description of the font collection." - }, "font_families": { "type": "array", "description": "Array of font families ready to be installed.", @@ -159,23 +151,6 @@ "required": [ "font_family_settings" ], "additionalProperties": false } - }, - "categories": { - "type": "array", - "description": "Array of category objects.", - "items": { - "type": "object", - "properties": { - "slug": { - "type": "string" - }, - "name": { - "type": "string" - } - }, - "required": [ "slug", "name" ], - "additionalProperties": false - } } }, "additionalProperties": false,