1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
2021-04-02 16:29:01 -04:00

5.1 KiB

NetBox Models

Model Types

A NetBox model represents a discrete object type such as a device or IP address. Each model is defined as a Python class and has its own SQL table. All NetBox data models can be categorized by type.

Features Matrix

  • Change logging - Changes to these objects are automatically recorded in the change log
  • Webhooks - NetBox is capable of generating outgoing webhooks for these objects
  • Custom fields - These models support the addition of user-defined fields
  • Export templates - Users can create custom export templates for these models
  • Tagging - The models can be tagged with user-defined tags
  • Journaling - These models support persistent historical commentary
  • Nesting - These models can be nested recursively to create a hierarchy
Type Change Logging Webhooks Custom Fields Export Templates Tags Journaling Nesting
Primary :material-check: :material-check: :material-check: :material-check: :material-check: :material-check:
Organizational :material-check: :material-check: :material-check: :material-check:
Nested Group :material-check: :material-check: :material-check: :material-check: :material-check:
Component :material-check: :material-check: :material-check: :material-check: :material-check:
Component Template :material-check: :material-check: :material-check:

Models Index

Primary Models

Organizational Models

Nested Group Models

Component Models

Component Template Models