Agent
AgentQuery
¶
Bases: BaseQuery
CRUD methods for :class:~ckanext.attribution.model.agent.Agent.
Fields ======
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
agent_type
|
str
|
broad type of agent; usually 'person' or 'org' |
required |
external_id
|
str, optional
|
the agent's ID from an external service like ORCID or ROR |
required |
external_id_scheme
|
str, optional
|
the name of the scheme for the external ID, e.g. 'orcid' or 'ror' |
required |
family_name
|
str, optional
|
family name of an person [person only, required] |
required |
given_names
|
str, optional
|
given name(s) or initials of an person [person only, required] |
required |
given_names_first
|
bool, optional
|
whether given names should be displayed before the family name (default True) [person only, optional] |
required |
user_id
|
str, optional
|
the ID for a registered user of this CKAN instance associated with this agent [person only, optional] |
required |
name
|
str, optional
|
name of an organisation [org only, required] |
required |
Source code in ckanext/attribution/model/crud/agent.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | |
read_external_id(eid)
classmethod
¶
Retrieve an agent record by its external identifier.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
eid
|
str
|
the full external ID (e.g. ORCID or ROR ID) of the record |
required |
Returns:
| Type | Description |
|---|---|
Agent
|
One agent or None if not found. |
Source code in ckanext/attribution/model/crud/agent.py
84 85 86 87 88 89 90 91 92 93 94 | |