Skip to content

Online Address

Description

A website associated or owned by the party. Note that connections to external services (like IMDB, Instagram, etc) are stored within ExternalRecord nodes.

Label

:OnlineAddress

Properties

PropertyDescriptionType
idUnique identifier; a uuidstring
typeSee belowstring
addressThe actual online address (e.g., email address or URL)string
primaryboolean
externalDefaults to true when field is null/undefinedboolean
submissionDefaultDefaults to false when field is null/undefinedboolean
descriptionstring
privacyLevel of privacy for the addressstring
businessUnitUTA business unit for which this data appliesstring
createdBythe person or process that created the nodestring
createdDatedateTime
modifiedBythe person or process who last modified the nodestring
modifiedDatedateTime

Below are the potential online address types:

TypeNotes
Websiteurl
Blogurl
Artworkurl
ShowcaseLinkurl
Pressurl
Articleurl
Reviewurl
Portfoliourl
Interviewurl
BoxLinkurl
Reelurl
Sceneurl

Below are the potential business unit types:

TypeNotes
ADVISORY
CREATORS
FILMED_ENTERTAINMENT
FOUNDATION
LIVE
PUBLISHING
SPORTS

Below are the potential privacy levels:

TypeNotes
Department
Public
Private
UTA

Parties can have multiple online addresses of various types, any number of which can be active at one time and of course no limit to the number of inactive online addresses.

Relationships

The HAS_ONLINE_ADDRESS relationship connects parties to online addresses, and uses the standard relationship properties.

Examples

cypher
MATCH   (party:Party { id: $id } )
MERGE   (party)-[rel:HAS_ONLINE_ADDRESS {
          active: true,
          private: false,
          fromDate: date()
        }]->(address:OnlineAddress {
          type: "Blog",
          address: "https://johndoe.com/blog",
          primary: false
        })
RETURN  party.id,
        party.name,
        address{.*}

Confidential. For internal use only.