RA-SKG Agent
The RA-SKG extension introduce metrics (i.e., indicators and badges) for Agent.
Properties
ra_metrics
List (recommended): A collection of metrics available for a Agent.
Each element of the list is structured as follow.
ra_metricObject (mandatory): The information about the provided metric. Metrics can be of two kinds:- Scalar indicating something countable (e.g., a citation count). In this case,
ra_metrichas the following properties:ra_measureObject (mandatory): An object representing the scalar and its meaning.classString (recommended): The URL of the class identifying the entity (e.g., in an ontology) describing that type.labelsObject (recommended): the labels describing the type (multiple for multilingualism). The object is a dictionary, the keys represent language codes following ISO 639-1; the special keynoneis reserved whenever the information about the language is not available or cannot be shared.defined_inString (optional): the URL of the schema defining the metric type used.
ra_valueString (mandatory): the actual value of the metric.
- Badges indicating a property or claim the Agent exhibits. In this case,
ra_metrichas the following properties:ra_categoryObject (mandatory): An object representing the badge and its meaning.classString (recommended): The URL of the class identifying the entity (e.g., in an ontology) describing that type.labelsObject (recommended): the labels describing the type (multiple for multilingualism). The object is a dictionary, the keys represent language codes following ISO 639-1; the special keynoneis reserved whenever the information about the language is not available or cannot be shared.defined_inString (optional): the URL of the schema defining the metric type used.
- Scalar indicating something countable (e.g., a citation count). In this case,
ra_providerString (recommended): An Agent providing the metric.descriptionString (optional): A description of the metric.
"ra_metrics": [
{
"ra_metric": {
"ra_measure": {
"class": "http://purl.org/spar/bido/author-citation-count",
"labels": {
"en": "author citation count",
"it": "conteggio delle citazioni ricevute dall'autore"
},
"defined_in": "http://purl.org/spar/bido-standard-bibliometric-measures"
},
"ra_value": 3125.0
},
"ra_provider": "agent_1",
"ra_discipline": "topic_1",
"description": "The total number of citations received by all articles of a specific discipline of the researcher of interest. All publication records of subtype 'Article' from the OpenAIRE Graph that are marked as authored by the researcher were collected and their citations from other articles were counted. Citations and article metadata required to calculate the particular indicator are gathered by the OpenAIRE Graph v9.0.0."
}
]
ra_profiles
List (recommended): A collection of narrative profiles for an Agent (applies only if the entity_type of an Agent is person) that can support an evaluation.
Each element of the list is structured as follows:
ra_titleString (recommended): the title of the narrative profile.ra_sectionsList (recommended): Sections composing the narrative. Each section has the following properties:ra_titleString (recommended): Title of the sectiondescriptionString (optional): Description, e.g. containing guidelines, of what is expected as content of the sectionra_contentString (optional): Content of the sectioncitesList (optional): Research products the section is referring to.
ra_templateString (optional): the URL of the template that is used to create the CV.
"ra_profiles" : [
{
"ra_title": "John Doe CV",
"ra_sections": [
{
"ra_title": "Ethical AI Models in Biochemical Research",
"description": "Maximum 1000 words",
"ra_content": "As artificial intelligence (AI) becomes integral to ...",
"cites": ["product_1", "product_2"]
},
{
"ra_title": "Exploring the Duality of Molecular Systems for Drug Design",
"description": "Maximum 1000 words",
"ra_content": "The complexity of molecular behavior in biological ...",
"cites": ["product_3", "product_4"]
}
]
}
]