Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
# minimum requirement
{
    "id": "my-category-id",
    "name": "My Category"
}


# all options
{
    "children": [],
    "description": "some description text",
    "id": "my-category-id",
    "name": "My Category",
    "synonyms": [
        {
            "language": "custom",
            "value": "some other category name"
        }
    ]
}

Example: Folder structure to hierarchy file structure

A usecase could be to organize all your final shots and plates into a “project archive” library, to quickly get the shots you did on previous shows. Also a quick way for the editorial department to do some showreel editing or for production to collect showreel shots for freelance artists.

Here is an example Python script that converts a nested folder strucutre on disk to a hierarchy conform file.
https://github.com/das-element/resources/blob/main/misc/code_snippets/get_hierarchy_from_folder_structure.py