{ "type": "object", "properties": { "entityLabel": { "type": "object", "properties": { "label": { "type": "string", "example": "Example Title" }, "labelPlural": { "type": "string", "example": "example_value" } }, "required": [ "label", "labelPlural" ] }, "id": { "type": "string", "example": "abc123" }, "motif": { "type": "object", "properties": { "color": { "type": "string", "example": "example_value" }, "largeIconUrl": { "type": "string", "example": "https://www.example.com" }, "mediumIconUrl": { "type": "string", "example": "https://www.example.com" }, "smallIconUrl": { "type": "string", "example": "https://www.example.com" }, "svgIconUrl": { "type": "['string', 'null']", "example": "https://www.example.com" } }, "required": [ "color", "largeIconUrl", "mediumIconUrl", "smallIconUrl", "svgIconUrl" ] }, "mySubscription": { "type": "['string', 'null']", "example": "example_value" }, "name": { "type": "string", "example": "Example Title" }, "type": { "type": "string", "example": "example_value" }, "url": { "type": "string", "example": "https://www.example.com" } }, "required": [ "entityLabel", "id", "motif", "mySubscription", "name", "type", "url" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Parent" }