mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
34 lines
559 B
YAML
34 lines
559 B
YAML
entity: Credential
|
|
version: "1.0"
|
|
description: "Secure credential storage for user authentication"
|
|
|
|
fields:
|
|
username:
|
|
type: string
|
|
primary: true
|
|
description: "Associated username"
|
|
|
|
passwordHash:
|
|
type: string
|
|
required: true
|
|
sensitive: true
|
|
description: "Hashed password (never returned in queries)"
|
|
|
|
indexes:
|
|
- fields: [username]
|
|
unique: true
|
|
|
|
acl:
|
|
create:
|
|
system: true
|
|
read:
|
|
system: true
|
|
update:
|
|
system: true
|
|
delete:
|
|
system: true
|
|
|
|
security:
|
|
never_expose: [passwordHash]
|
|
audit_all_access: true
|