Skip to content

Instantly share code, notes, and snippets.

@tmtmtmtm
Created October 22, 2020 10:22
Show Gist options
  • Save tmtmtmtm/c1a7def52ed4fc32ef21f414d3a3ad0e to your computer and use it in GitHub Desktop.
Save tmtmtmtm/c1a7def52ed4fc32ef21f414d3a3ad0e to your computer and use it in GitHub Desktop.
wikibase-cli template to add a member of the National Assembly of Armenia
// Add a member of the Armenian National Assembly
module.exports = (id, name) => ({
labels: { "en": name },
descriptions: { "en": "Armenian politician" },
claims: {
P31: { value: 'Q5' },
P106: { value: 'Q82955' },
P39: {
value: 'Q17277248',
qualifiers: { P2937: 'Q61165268' },
references: { P854: 'http://www.parliament.am/deputies.php?lang=eng' }
},
P5213: { value: id }
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment