2024-07-26 13:00:42 +02:00
---
sidebar_position: 3
---
# Organizations
Organizations include companies, research centers or institutions involved as project partners or as responsible of operating data sources. Information about organizations are collected from funder databases like CORDA, registries of data sources like OpenDOAR and re3Data, and CRIS systems, as being related to projects or data sources.
---
## The `Organization` object
### id
_Type: String • Cardinality: ONE_
The OpenAIRE id for the organization, created according to the [OpenAIRE entity identifier and PID mapping policy ](../pids-and-identifiers ).
```json
"id": "openorgs____::b84450f9864182c67b8611b5593f4250"
```
2024-07-30 11:36:02 +02:00
### legalShortName
2024-07-26 13:00:42 +02:00
_Type: String • Cardinality: ONE_
The legal name in short form of the organization.
```json
2024-07-30 11:36:02 +02:00
"legalShortName": "ARC"
2024-07-26 13:00:42 +02:00
```
2024-07-30 11:36:02 +02:00
### legalName
2024-07-26 13:00:42 +02:00
_Type: String • Cardinality: ONE_
The legal name of the organization.
```json
2024-07-30 11:36:02 +02:00
"legalName": "Athena Research and Innovation Center In Information Communication & Knowledge Technologies"
2024-07-26 13:00:42 +02:00
```
2024-07-30 11:36:02 +02:00
### alternativeNames
2024-07-26 13:00:42 +02:00
_Type: String • Cardinality: MANY_
Alternative names that identify the organization.
```json
2024-07-30 11:36:02 +02:00
"alternativeNames": [
2024-07-26 13:00:42 +02:00
"Athena Research and Innovation Center In Information Communication & Knowledge Technologies",
"Athena RIC",
"ARC",
...
]
```
2024-07-30 11:36:02 +02:00
### websiteUrl
2024-07-26 13:00:42 +02:00
_Type: String • Cardinality: ONE_
The websiteurl of the organization.
```json
2024-07-30 11:36:02 +02:00
"websiteUrl": "https://www.athena-innovation.gr/el/announce/pressreleases.html"
2024-07-26 13:00:42 +02:00
```
### country
_Type: [Country ](other#country ) • Cardinality: ONE_
The country where the organization is located.
```json
"country":{
"code": "GR",
"label": "Greece"
}
```
### pid
_Type: [OrganizationPid ](other#organizationpid ) • Cardinality: MANY_
The list of persistent identifiers for the organization.
```json
"pid": [
{
"scheme": "ISNI",
"value": "0000 0004 0393 5688"
},
{
"scheme": "GRID",
2024-07-30 11:36:02 +02:00
"value": "grid.19843.37"
2024-07-26 13:00:42 +02:00
},
...
]
```