Video Inventory
  • Introduction
  • Introduction
    • Overview
    • Check Out Items
    • Check In Items
  • Administrator Tools
    • Overview
    • Items
    • Macros
    • Categories
    • Transactions
    • Users
  • System Configuration
    • Deployment
    • Kit List
    • DB ERD/DDL
Powered by GitBook
On this page
  1. System Configuration

Kit List

PreviousDeploymentNextDB ERD/DDL

Last updated 7 years ago

The kit list is the checklist that is displayed on the left-side of the checkout view, that reminds users who are checking out equipment to include all of the key components. This list is controlled by the kit.json file. This is a simple JSON file that is loaded on page load by the front end.

As items are added to the transaction, they will be checked off on the list, based on the category that the items that have been added to the transaction.

Format

{
  "Section Title": [
    {
      "Name": "List Item Name",
      "Category": "Category ID"
    }
  ]
}

The kit file can be found in src/main/webapp/kit.json, and an example of our production kit file can be found on GitHub.

By modifying the kit.json file, you can change the section title, List Item names, and their corresponding categories. In regard to the Category, the name entered in the kit file, must match the category ID for the category. Other than that, the file follows standard JSON formatting.

A copy of the JSON Schema can be found at http://json-schema.org/.