searches the current version of every section · esc to close

Viewing this section as of v0.1.31 (tagged 2026-04-02). Go to current →

26.01 Form Metadata Module

The Form Metadata module enhances the scene by adding descriptive data for the space, specified in the FormMetadata object.

It is RECOMMENDED to include the following data to record basic information about the space:

  • name of type string
  • description of type string

All other data in FormMetadata are OPTIONAL.

An example of FormMetadata can be represented as:

interface FormMetadata {  
    name: string // RECOMMENDED
    description: string // RECOMMENDED
    // ...
}