{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SpecificationGroupInsertRequest", "title": "SpecificationGroupInsertRequest", "required": [ "CategoryId", "Name" ], "type": "object", "properties": { "CategoryId": { "type": "integer", "format": "int32", "description": "Category ID." }, "Name": { "type": "string", "description": "Specification group name." } }, "example": { "CategoryId": 1, "Name": "GroupName1" } }