001-base_model_replication_attributes.json 942 Bytes
Newer Older
1 2 3
{
  "patches": [
    {
4 5
      "id": "TYPEDEF_PATCH_0000_001",
      "description": "Add 'replicatedFrom' and 'replicatedTo' attributes to Referenceable",
6 7 8 9 10 11 12
      "action": "ADD_ATTRIBUTE",
      "typeName": "Referenceable",
      "applyToVersion": "1.0",
      "updateToVersion": "1.1",
      "params": null,
      "attributeDefs": [
        {
13 14
          "name": "replicatedFrom",
          "typeName": "array<AtlasServer>",
15 16 17
          "cardinality": "SET",
          "isIndexable": false,
          "isOptional": true,
18 19 20 21
          "isUnique": false,
          "options": {
            "isSoftReference": "true"
          }
22 23
        },
        {
24 25
          "name": "replicatedTo",
          "typeName": "array<AtlasServer>",
26 27 28
          "cardinality": "SET",
          "isIndexable": false,
          "isOptional": true,
29 30 31 32
          "isUnique": false,
          "options": {
            "isSoftReference": "true"
          }
33 34 35 36 37
        }
      ]
    }
  ]
}