0110-Actors.json 7.79 KB
Newer Older
1 2 3 4 5 6 7 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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
{
  "enumDefs": [
    {
      "name": "CrowdSourcingRole",
      "description": "An Actor Profile makes a contribution in a crowdsourcing role.",
      "typeVersion": "1.0",
      "elementDefs": [
        {
          "ordinal": 0,
          "value": "PROPOSER",
          "description": "A proposed contribution."
        },
        {
          "ordinal": 1,
          "value": "REVIEWER",
          "description": "A reviewer contribution."
        },
        {
          "ordinal": 2,
          "value": "SUPPORTER",
          "description": "A supporter contribution."
        },
        {
          "ordinal": 3,
          "value": "APPROVER",
          "description": "An approver contribution."
        },
        {
          "ordinal": 99,
          "value": "OTHER",
          "description": "Another contribution."
        }
      ]
    },
    {
      "name": "ContactMethodType",
      "description": "Types of contact method.",
      "typeVersion": "1.0",
      "elementDefs": [
        {
          "ordinal": 0,
          "value": "EMAIL"
        },
        {
          "ordinal": 1,
          "value": "PHONE"
        },
        {
          "ordinal": 99,
          "value": "OTHER"
        }
      ]
    }
  ],
  "structDefs": [],
  "classificationDefs": [],
  "entityDefs": [
    {
      "name": "ContactDetail",
      "description": "The contact details describe the contact method and its associated value.",
      "typeVersion": "1.0",
      "attributeDefs": [
        {
          "name": "contactMethodType",
          "typeName": "ContactMethodType",
          "description": "Contact method type",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        },
        {
          "name": "contactMethodValue",
          "typeName": "string",
          "description": "The value associated with the contact method. For example emails have the email address.",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        }
      ]
    },
    {
      "name": "ActorProfile",
      "superTypes": [
        "Referenceable"
      ],
      "description": "Actors are associated with the new metadata that they create and comment on via their user identities. This separation is maintained because the user identity is the only information available on calls to the metadata repository. The ActorProfile is used to aggregate the activity of the individual or team. More information about the person behind the user identity is available through the ActorProfile. It describes the actual person, or possibly team if group users are being used, that is working either with the data assets or with the metadata directly. The profile is a record to add additional information about the person or engine that is making the requests. They may have more than one UserIdentity.  The userId is recorded with specific entities and relationships when they are created or updated. The userId for a Software Server is also captured in the metadata model, so it is possible to correlate the actions of a data processing Software Server with changes to the metadata.",
      "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": true
        }
      ]
    },
    {
      "name": "Team",
      "description": "An team participating in the collaboration around open metadata.",
      "superTypes": [
        "ActorProfile"
      ],
      "description": "A team",
      "typeVersion": "1.0"
    },
    {
      "name": "Person",
      "description": "An individual participating in the collaboration around open metadata.",
      "superTypes": [
        "ActorProfile"
      ],
      "description": "",
      "typeVersion": "1.0",
      "attributeDefs": [
        {
          "name": "karmaPoints",
          "description": "Open metadata supports KarmaPoints. These are awarded for participation in the collaboration around open metadata.",
          "typeName": "int",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        }
      ]
    },
    {
      "name": "UserIdentity",
      "superTypes": [],
      "description": "UserIdentity provides a structure for storing the security authentication information about a person. We have a simple string for the userId - but this could be extended to include more sophisticated identification information. The user identity is the only information available on calls to the metadata repository. Most metadata repositories are run in a secure mode requiring incoming requests to be authenticated. There is a userIdentifier for each unique logged on security identity; in this model it is called the userId.",
      "typeVersion": "1.0",
      "attributeDefs": [
        {
          "name": "userId",
          "description": "The unique logged on security identity.",
          "typeName": "string",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        }
      ]
    }
  ],
  "relationshipDefs": [
    {
      "name": "Leadership",
      "typeVersion": "1.0",
      "endDef1": {
        "name": "leads",
        "type": "ActorProfile",
        "cardinality": "SET"
      },
      "endDef2": {
        "name": "follows",
        "type": "ActorProfile",
        "cardinality": "SET"
      },
      "relationshipCategory": "ASSOCIATION",
      "propagateTags": "NONE",
      "attributeDefs": []
    },
    {
      "name": "Peer",
      "typeVersion": "1.0",
      "endDef1": {
        "name": "peer",
        "type": "ActorProfile",
        "cardinality": "SET"
      },
      "endDef2": {
        "name": "peer",
        "type": "ActorProfile",
        "cardinality": "SET"
      },
      "relationshipCategory": "ASSOCIATION",
      "propagateTags": "NONE",
      "attributeDefs": []
    },
    {
      "name": "ProfileIdentities",
      "typeVersion": "1.0",
      "endDef1": {
        "name": "profile",
        "type": "UserIdentity",
        "cardinality": "SET"
      },
      "endDef2": {
        "name": "userIdentities",
        "type": "ActorProfile",
        "cardinality": "SET"
      },
      "relationshipCategory": "ASSOCIATION",
      "propagateTags": "NONE",
      "attributeDefs": []
    },
    {
      "name": "Contributor",
      "typeVersion": "1.0",
      "endDef1": {
        "name": "contributor",
        "type": "Referenceable",
        "cardinality": "SET"
      },
      "endDef2": {
        "name": "contribution",
        "type": "ActorProfile",
        "cardinality": "SET"
      },
      "relationshipCategory": "ASSOCIATION",
      "propagateTags": "NONE",
      "attributeDefs": [
        {
          "name": "roleType",
          "typeName": "CrowdSourcingRole",
          "cardinality": "SINGLE",
          "isIndexable": true,
          "isOptional": true,
          "isUnique": false
        }
      ]
    },
    {
      "name": "ActorContactDetail",
      "description": "The contact details are all the ways that can be used to contact the actor. Mostly contact details are owned by only one Actor. It is also possible to define shared contact details.",
      "typeVersion": "1.0",
      "endDef1": {
        "name": "contacts",
        "type": "ActorProfile",
        "cardinality": "SET",
        "isContainer": true
      },
      "endDef2": {
        "name": "actorProfile",
        "type": "ContactDetail",
        "cardinality": "SET"
      },
      "relationshipCategory": "AGGREGATION",
      "propagateTags": "NONE"
    }
  ]
}