Metadata - user-grinch/ModelExtras GitHub Wiki

๐Ÿงพ Overview

This section of .jsonc file contains metadata about the vehicle model and its compatibility. This is mostly used for reference and version control, helping you and others quickly identify who made the model, what it's supposed to be, and whether it meets plugin requirements.

This section does not affect gameplay or visual features but is helpful for organizing and tracking models when working with multiple mods or teams.

๐Ÿ“Œ Example:

{
  "metadata": {
    "author": "Grinch_",
    "desc": "Lamborghini Aventador SVJ",
    "creationtime": "2023-10-01",
    "minver": 10700
  }
}

๐Ÿง‘โ€๐Ÿ’ป Author

Defines the name or handle of the creator of the model.
๐Ÿ“Œ Example: "Grinch_"

๐Ÿ’ก Tip: You can use a group or studio name if the model is a team effort (e.g. "ShadowGarage" or "TurboMods").

๐Ÿš— Desc

A short description of the model. Typically, this is the vehicle's real name, nickname, or purpose.
๐Ÿ“Œ Example: "Lamborghini Aventador SVJ"

โœจ This description may show up in mod managers or custom loaders if supported.

๐Ÿ•ฐ๏ธ CreationTime

The date when the model was completed or finalized.
๐Ÿ“Œ Format: YYYY-MM-DD
๐Ÿ“Œ Example: "2023-10-01"

๐Ÿ—“๏ธ Helps you track versions and updates, especially when managing backups or releases.

๐Ÿ› ๏ธ MinVer

Minimum required version of the Model Extras plugin for the model to work correctly.
๐Ÿ“Œ Format: A number that represents the plugin version code (not a date).
๐Ÿ“Œ Example: 10600

โš ๏ธ A warning message will be displayed to the user if a lower version is being used

Available versions,

  1. 10600 - v1.6
  2. 10700 - v1.7
  3. 20000 - v2.0

โœ… Best Practices

  • Keep this section updated when publishing models.
  • Useful for modpack managers or game modding teams to track who made what.
  • Helps with troubleshooting if a model doesn't load as expected โ€” especially after plugin updates.