Firestore:验证对象数组

时间:2017-11-19 19:22:08

标签: firebase firebase-security google-cloud-firestore

我正在寻找验证以下数据结构的解决方案: 具有相同键(propertyApropertyB)和相同类型值(string)的对象数组。

{
  title: 'Hello World',
  toValidate: [
    {
      propertyA: 'string', // Always the same keys
      propertyB: 'string'  // Always a string
    },
    {
      propertyA: 'string',
      propertyB: 'string'
    }
  ]
}

1 个答案:

答案 0 :(得分:0)

您可能正在寻找子集。他们可以有自己的验证规则。