0025-Locations_model.json 4.07 KB
Newer Older
1 2 3 4 5
{
  "enumDefs": [],
  "structDefs": [],
  "classificationDefs": [
    {
6 7
      "name": "FixedLocation",
      "description":"FixedLocation means that the location represents a physical place where, for example, Hosts, Servers and hence data may be located. This could be an area of a data center, the building the data center is located in, or even the country where the server/data is located.",
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
      "superTypes": [],
      "entityTypes":["Location"],
      "typeVersion": "1.0",
      "attributeDefs": [
        {
          "name": "coordinates",
          "typeName": "string",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        },
        {
          "name": "address",
          "typeName": "string",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        }
      ]
    },
    {
      "name": "SecureLocation",
      "description":"Secure Location indicates that there is restricted access to the location",
      "superTypes": [],
      "entityTypes":["Location"],
      "typeVersion": "1.0",
      "attributeDefs": []
    },
    {
39 40
      "name": "CyberLocation",
      "description":"CyberLocation means that the location describes something in cyber space.",
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
      "superTypes": [],
      "entityTypes":["Location"],
      "typeVersion": "1.0",
      "attributeDefs": [
        {
          "name": "device",
          "typeName": "string",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        }
      ]
    }
  ],
  "entityDefs": [
    {
      "name": "Location",
59
      "description":"The location can be used to define country, data centers, geographic locations. The granularity in which locations are modeled depends on the organisation. It is important to understand where assets are located to ensure they are properly protected and comply with data sovereignty laws. The notion of a location is variable and the classifications FixedLocation, SecureLocation and CyberLocation help to clarify the nature of the location.",
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
      "superTypes": [
        "Referenceable"
      ],
      "typeVersion": "1.0",
      "attributeDefs": [
        {
          "name": "name",
          "typeName": "string",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        },
        {
          "name": "description",
          "typeName": "string",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": false,
          "isUnique": false
        }
      ]
    }
  ],
  "relationshipDefs": [
    {
      "name": "NestedLocation",
      "description":"The Nested Location relationship allows hierarchical grouping of locations to be represented. Notice that locations can be organized into multiple hierarchies.",
      "typeVersion": "1.0",
      "endDef1": {
        "name": "nestedLocations",
        "type": "Location",
        "cardinality": "SET",
        "isContainer": true
      },
      "endDef2": {
        "name": "groupingLocations",
        "type": "Location",
        "cardinality": "SET"
      },
      "relationshipCategory": "AGGREGATION"
    },
    {
      "name": "AdjacentLocation",
      "description":"The Adjacent Location relationship links locations that touch one another.",
      "typeVersion": "1.0",
      "endDef1": {
        "name": "PeerLocations",
        "type": "Location",
        "cardinality": "SET"
      },
      "endDef2": {
        "name": "PeerLocations",
        "type": "Location",
        "cardinality": "SET"
      },
      "relationshipCategory": "ASSOCIATION"
    },
    {
      "name": "AssetLocation",
      "description":"The location of the asset.",
      "typeVersion": "1.0",
      "endDef1": {
        "name": "knownLocations",
        "type": "Asset",
        "cardinality": "SET"
      },
      "endDef2": {
        "name": "localAssets",
        "type": "Location",
        "cardinality": "SET"
      },
      "relationshipCategory": "ASSOCIATION"
    }
  ]
}