{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Heading2Style", "title": "Heading2Style", "type": "object", "properties": { "id": { "type": "string", "nullable": true, "readOnly": true }, "style_type": { "type": "string", "enum": [ "heading-2-styles" ] }, "styles": { "$ref": "#/components/schemas/HeadingStyleStyles" } }, "required": [ "style_type", "styles" ] }