Properties
| Name | Type | Description |
|---|---|---|
| CategoryId | integer | Category ID. |
| Id | integer | Specification group ID. |
| Name | string | Specification group name. |
| Position | integer | Specification group position. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SpecificationsGroup",
"title": "SpecificationsGroup",
"required": [
"CategoryId",
"Id",
"Name",
"Position"
],
"type": "object",
"properties": {
"CategoryId": {
"type": "integer",
"nullable": true,
"description": "Category ID."
},
"Id": {
"type": "integer",
"format": "int32",
"description": "Specification group ID."
},
"Name": {
"type": "string",
"description": "Specification group name."
},
"Position": {
"type": "integer",
"format": "int32",
"nullable": true,
"description": "Specification group position."
}
},
"example": {
"CategoryId": 1,
"Id": 4,
"Name": "Sizes",
"Position": 1
}
}