| ClassIT+™ |
Description: Represents a Data Transfer Object (DTO) for article index information. Contains details such as article numbers, keywords, text, heading status, and article pointers used in search operations.
| JSON Properties | Description | Data Type |
| articleNumbers | List of unique identifiers for the article item. |
|
| keywords | List of keywords associated with the article for search and indexing purposes. |
|
| isHeading | Value indicating whether the text represents a heading. |
|
Example Heading Levels
| The following table of sample code displays heading levels based on if the heading is the same or different from a keyword. |
| Heading Level | Sample Code |
| When the heading is the same as the keyword, so it is level 0. | { "articleNumbers": [ "1050" ], "keywords": [ "Abrasives - as listed" ], "heading": "Abrasives - as listed", "isHeading": true }, |
When the headings are different from keywords, so heading is at level 0 and the keywords are at level 1. | { "articleNumbers": [ "1050" ], "keywords": [ "Abrasive" ], "heading": "Belts", "isHeading": false }, { "articleNumbers": [ "131670" ], "keywords": [ "Cut-off", "abrasive disc type", "power", "other than hand" ], "heading": "Machinery or Machines", "isHeading": false } |