Hello, i am trying to familiarise myself with the PermID API and I see it's straightforward to obtain organisation's data.
For example, say: https://permid.org/1-4295869244 we can get something like:
{
"@id": "https://permid.org/1-4295869244",
"@type": "tr-org:Organization",
"tr-common:hasPermId": "4295869244",
"hasOrganizationPrimaryQuote": "https://permid.org/1-55837367819",
"hasPrimaryInstrument": "https://permid.org/1-8590932558",
"mdaas:HeadquartersAddress": "Berliner Ring 2\nWOLFSBURG\nNIEDERSACHSEN\n38440\nGermany\n",
"mdaas:RegisteredAddress": "Berliner Ring 2\nWOLFSBURG\nNIEDERSACHSEN\n38440\nGermany\n",
"hasActivityStatus": "tr-org:statusActive",
"tr-org:hasHeadquartersFaxNumber": "495361928282",
"tr-org:hasHeadquartersPhoneNumber": "49536190",
"hasHoldingClassification": "tr-org:publiclyHeld",
"hasIPODate": "1961-08-15T04:00:00Z",
"tr-org:hasLEI": "529900NNUPAGGOMPXZ31",
"hasPrimaryBusinessSector": "https://permid.org/1-4294952931",
"hasPrimaryEconomicSector": "https://permid.org/1-4294952746",
"hasPrimaryIndustryGroup": "https://permid.org/1-4294952930",
"tr-org:hasRegisteredFaxNumber": "495361928282",
"tr-org:hasRegisteredPhoneNumber": "49536190",
"isIncorporatedIn": "http://sws.geonames.org/2921044/",
"isDomiciledIn": "http://sws.geonames.org/2921044/",
"hasURL": "https://www.volkswagenag.com/",
"vcard:organization-name": "Volkswagen AG",
"@context": {
"hasOrganizationPrimaryQuote": {
"@id": "http://permid.org/ontology/financial/hasOrganizationPrimaryQuote",
"@type": "@id"
},
"HeadquartersAddress": {
"@id": "http://permid.org/ontology/mdaas/HeadquartersAddress",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"hasPrimaryIndustryGroup": {
"@id": "http://permid.org/ontology/organization/hasPrimaryIndustryGroup",
"@type": "@id"
},
"organization-name": {
"@id": "http://www.w3.org/2006/vcard/ns#organization-name",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"hasIPODate": {
"@id": "http://permid.org/ontology/organization/hasIPODate",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"isDomiciledIn": {
"@id": "http://www.omg.org/spec/EDMC-FIBO/BE/LegalEntities/CorporateBodies/isDomiciledIn",
"@type": "@id"
},
"hasPrimaryEconomicSector": {
"@id": "http://permid.org/ontology/organization/hasPrimaryEconomicSector",
"@type": "@id"
},
"hasPrimaryInstrument": {
"@id": "http://permid.org/ontology/financial/hasPrimaryInstrument",
"@type": "@id"
},
"hasHeadquartersFaxNumber": {
"@id": "http://permid.org/ontology/organization/hasHeadquartersFaxNumber",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"hasPermId": {
"@id": "http://permid.org/ontology/common/hasPermId",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"hasPrimaryBusinessSector": {
"@id": "http://permid.org/ontology/organization/hasPrimaryBusinessSector",
"@type": "@id"
},
"hasActivityStatus": {
"@id": "http://permid.org/ontology/organization/hasActivityStatus",
"@type": "@id"
},
"hasLEI": {
"@id": "http://permid.org/ontology/organization/hasLEI",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"hasRegisteredFaxNumber": {
"@id": "http://permid.org/ontology/organization/hasRegisteredFaxNumber",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"hasHeadquartersPhoneNumber": {
"@id": "http://permid.org/ontology/organization/hasHeadquartersPhoneNumber",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"isIncorporatedIn": {
"@id": "http://permid.org/ontology/organization/isIncorporatedIn",
"@type": "@id"
},
"RegisteredAddress": {
"@id": "http://permid.org/ontology/mdaas/RegisteredAddress",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"hasHoldingClassification": {
"@id": "http://permid.org/ontology/organization/hasHoldingClassification",
"@type": "@id"
},
"hasURL": {
"@id": "http://www.w3.org/2006/vcard/ns#hasURL",
"@type": "@id"
},
"hasRegisteredPhoneNumber": {
"@id": "http://permid.org/ontology/organization/hasRegisteredPhoneNumber",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"mdaas": "http://permid.org/ontology/mdaas/",
"tr-fin": "http://permid.org/ontology/financial/",
"tr-common": "http://permid.org/ontology/common/",
"fibo-be-le-cb": "http://www.omg.org/spec/EDMC-FIBO/BE/LegalEntities/CorporateBodies/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"vcard": "http://www.w3.org/2006/vcard/ns#",
"tr-org": "http://permid.org/ontology/organization/"
}
}
but, as you can see from the link, we also have available the current people involved with the company. Is there an easy way to obtain all the information we see for the given company URI?
I understand that the other way is to do separate searches for persons and link them to the company, but I am wondering -since the information is already reported-, how it could be obtained...