Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions docs/build/secretVault-secretDataAnalytics/create-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ You can create schema collections using the SecretVault Tools UI or programatica
- Use "date-time" format for dates (coerce: true)
- Remember to take into account the type for fields that you want to encrypt using %allot/%share
- Mark required fields (\_id is always required)
- Set additionalProperties to false
- Set `additionalProperties` to false
- Avoid "$" prefix in field names to prevent query conflicts
- Note: System adds \_created and \_updated fields automatically

Expand Down Expand Up @@ -129,7 +129,8 @@ You can create schema collections using the SecretVault Tools UI or programatica
"minItems": 1
}
},
"required": ["_id", "years_in_web3", "responses"]
"required": ["_id", "years_in_web3", "responses"],
"additionalProperties": false
}
}
}
Expand Down