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.41 | v0.1.42 | ||
|---|---|---|---|
| 1 | # 26.01 Form Metadata Module | 1 | # 26.01 Form Metadata Module |
| 2 | 2 | ||
| 3 | The Form Metadata module enhances the scene by adding descriptive data for the space, specified in the `FormMetadata` object. | 3 | The Form Metadata module enhances the scene by adding descriptive data for the space, specified in the `FormMetadata` object. |
| 4 | 4 | ||
| 5 | It is RECOMMENDED to include the following data to record basic information about the space: | 5 | It 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` | ||
| 8 | 10 | ||
| 9 | All other data in `FormMetadata` are OPTIONAL. | 11 | All other data in `FormMetadata` are OPTIONAL. |
| 10 | 12 | ||
| 11 | An example of `FormMetadata` can be represented as: | 13 | An example of `FormMetadata` can be represented as: |
| 12 | ```ts | 14 | ```ts |
| 13 | interface FormMetadata { | 15 | interface FormMetadata { |
| 14 | name: string // RECOMMENDED | 16 | name: string // RECOMMENDED |
| 15 | description: string // RECOMMENDED | 17 | description: string // RECOMMENDED |
| 18 | owner: string // RECOMMENDED | ||
| 19 | creator: string // RECOMMENDED | ||
| 16 | // ... | 20 | // ... |
| 17 | } | 21 | } |
| 18 | ``` | 22 | ``` |
| 23 | |||