Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

What is the correct modeling of portal.getty.edu links? #54

Open
kasei opened this issue Sep 30, 2019 · 2 comments
Open

What is the correct modeling of portal.getty.edu links? #54

kasei opened this issue Sep 30, 2019 · 2 comments
Assignees
Labels
pir Provenance Index

Comments

@kasei
Copy link
Collaborator

kasei commented Sep 30, 2019

Right now auction events have portal links using referred_to_by, but it seems like there might be some association between the sale catalog (the event's subject_of) and the portal WebPage:

auction.referred_to_by = vocab.WebPage(ident=url)

{
  "type": "Activity",
  "_label": "Auction Event for F-A235",
  "referred_to_by": [
    {
      "id": "http://portal.getty.edu/books/inha_18072",
      "type": "LinguisticObject"
    }
  ],
  "subject_of": [
    {
      "id": "urn:uuid:0326dac7-8933-4949-8e37-47a2424efc7d",
      "type": "LinguisticObject",
      "_label": "Sale Catalog F-A235"
    }
  ]
}

Similarly for HumanMadeObjects, exact modeling of the portal link relationship needs to be confirmed.

hmo.referred_to_by = vocab.WebPage(ident=url)

@azaroth42
Copy link
Contributor

Agree -- we should confirm what the portal pages are thought to be. If they're all just copies of the catalogs, then they should be linked only from the catalogs. If there's also other documents that are mixed in, then we might need to link to them from other entities as well.

@kasei kasei added the pir Provenance Index label Oct 3, 2019
@kasei
Copy link
Collaborator Author

kasei commented Aug 5, 2020

Portal links are now modeled as web pages:

    {
      "id":"http:\/\/portal.getty.edu\/books\/inha_17691",
      "type":"DigitalObject",
      "_label":"http:\/\/portal.getty.edu\/books\/inha_17691",
      "classified_as":[
        {
          "id":"http:\/\/vocab.getty.edu\/aat\/300264578",
          "type":"Type",
          "_label":"Web Page"
        }
      ]
    },

However, there's some uncertainty about how Arches can support the actual URL link, so it is included as both the id and _label.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pir Provenance Index
Projects
None yet
Development

No branches or pull requests

2 participants