searches the current version of every section · esc to close

26.01 Form Metadata Modulev0.1.41 → v0.1.42

Changed in v0.1.42 (2026-04-14): form metadata now inclued the owner and creator

+5 0
v0.1.41v0.1.42
1# 26.01 Form Metadata Module1# 26.01 Form Metadata Module
22
3The Form Metadata module enhances the scene by adding descriptive data for the space, specified in the `FormMetadata` object.3The Form Metadata module enhances the scene by adding descriptive data for the space, specified in the `FormMetadata` object.
44
5It is RECOMMENDED to include the following data to record basic information about the space:5It is RECOMMENDED to include the following data to record basic information about the space:
6- `name` of type `string`6- `name` of type `string`
7- `description` of type `string`7- `description` of type `string`
8- `owner` of type `string`
9- `creator` of type `string`
810
9All other data in `FormMetadata` are OPTIONAL.11All other data in `FormMetadata` are OPTIONAL.
1012
11An example of `FormMetadata` can be represented as:13An example of `FormMetadata` can be represented as:
12```ts14```ts
13interface FormMetadata { 15interface FormMetadata {
14 name: string // RECOMMENDED16 name: string // RECOMMENDED
15 description: string // RECOMMENDED17 description: string // RECOMMENDED
18 owner: string // RECOMMENDED
19 creator: string // RECOMMENDED
16 // ...20 // ...
17}21}
18```22```
23