warunsl / Provenir

Semantic web project that intends to map provenance information of art works as a timeline.
0 stars 0 forks source link

Create json formats for the main entities of the project : art, artist, owner, museum #2

Open warunsl opened 10 years ago

warunsl commented 10 years ago
art = {
    "name" : "",
    "image_url" : "",
    "artist" : "",
    "short_description" : "",
    "long_description" : "",
    "current_owner" : "",
    "era" : "",
    "provenance" : [
        1,
        2,
        3
    ],
    "museums" : [
        "", 
        ""
    ]
}
warunsl commented 10 years ago
artist = {
    "name" : "",
    "country" : "",
    "short_description" : "",
    "long_description" : "",
    "era" : "",
    "influencer_of" : [
        1,
        2,
        3
    ],
    "influenced_by" : [
        1,
        2,
        3
    ],
}
warunsl commented 10 years ago
museum =  {
    "name" : "",
    "short_description" : "",
    "long_description" : "",
    "country" : "",
    "artworks" : [
        1,
        2,
        3
    ]
}
warunsl commented 10 years ago
owner =  {
    "name" : "",
    "country" : "",
    "artworks_owned" : [
        1,
        2,
        3
    ]
}