{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateCommunityInput", "title": "CreateCommunityInput", "type": "object", "description": "Input for creating a new Experience Cloud site", "required": [ "name", "templateName", "urlPathPrefix" ], "properties": { "description": { "type": "string", "description": "Description for the new site" }, "name": { "type": "string", "description": "Name for the new site" }, "templateName": { "type": "string", "description": "Template to use for the site" }, "urlPathPrefix": { "type": "string", "description": "URL path prefix for the site" } } }