rules. firestore. リソース
インターフェース 静的
読み取りまたは書き込み中の Firestore ドキュメント。
プロパティ
__名前__
非 null の rules.Path
完全なドキュメント名(パス)。
例
// Check 'name' field from the document
resource['__name__'] == /databases/(default)/documents/collection/document
データ
非 null の rules.Map
ドキュメント データのマップ。
例
// Check 'name' field from the document
resource.data.name == 'John Doe'
id
非 null の rules.String
ドキュメントのキーの文字列
例
resource['__name__'] ==
/databases/(default)/documents/collection/$(resource.id)