CredentialEngine / CatalogingGuidance

This repository is for recording issues around cataloging credentials including discretionary decision. The focus is on the cataloger--the person creating descriptions.
0 stars 0 forks source link

On proper use of the socialMedia property #3

Open stuartasutton opened 7 years ago

stuartasutton commented 7 years ago

The ceterms:socialMedia property has as it's domain both the ceterms:Agent subclasses and ceterms:ContactPoint. So, for example, a multi-campus college may have a set of social media addresses for the college as a whole. It may also have multiple contact points (e.g., for different services or for each of its campuses). Each of these contact points may have their own social media addresses.

However, if such multi-campus college has only a single set of social media addresses that span the multiple campuses and their services, only a single set of social media addresses should entered. The ceterms:socialMedia property in the various campus and service contact points should not repeat this data. Social media data should appear in a contact point description only if that social media is unique to the contact point.

Thus, the following is incorrect:

   "ceterms:socialMedia": [
        {"@id": "https://www.facebook.com/blackhawkcollege"},
        {"@id": "https://twitter.com/BHCRecruit"},
        {"@id": "https://www.youtube.com/channel/UC5G0AOgyeZUhIRQ_Jvor1KA"},
        {"@id": "https://www.linkedin.com/edu/school?id=32147"}
    ],
    "ceterms:subjectWebpage": [{"@id": "https://www.bhc.edu"}],
    "ceterms:targetContactPoint": [{
        "@type": "ceterms:ContactPoint",
        "ceterms:name": "Organization Contact Information",
        "ceterms:socialMedia": [
            {"@id": "https://www.facebook.com/blackhawkcollege"},
            {"@id": "https://twitter.com/BHCRecruit"},
            {"@id": "https://www.youtube.com/channel/UC5G0AOgyeZUhIRQ_Jvor1KA"},
            {"@id": "https://www.linkedin.com/edu/school?id=32147"}
        ],
        "ceterms:telephone": [
            "309-796-5000",
            "800-334-1311",
            "309-854-1700",
            "800-233-5671"
        ]
    }]

(Black Hawk College CredentialOrganization record in WorkIt)