_include org for PractionerRole endpoint

Hi,

If the PractitionerRole resource returned in the GET /PractitionerRole response bundle contains a reference to the Organisation under which that role is performed, what additional details does a response for the same practitioner role with the the include organisation parameter provide?

From your examples, a response without the include org details

...
"organization": {
 "reference": "Organization/FA626",
 "identifier": {
  "system": "https://fhir.nhs.uk/Id/ods-organization-code",
  "value": "FA626"
 },
 "display": "SILKSTONE PHARMACY"
},
...

and a response with the include org details

...
{
 "search": {
  "mode": "include"
 },
 "resource": {
  "resourceType": "Organization",
  "id": "FA626",
  "identifier": [
   {
    "system": "https://fhir.nhs.uk/Id/ods-organization-code",
    "value": "FA626"
   }
  ],
  "name": "SILKSTONE PHARMACY"
 },
 "fullUrl": "https://int.api.service.nhs.uk/healthcare-worker/Organization/FA626"
},
...

The only difference I can find is the name vs. display, which appear to produce the same value, and the fullUrl on the resource (and not on the reference). But given this is presumably not a resolvable URL, it has not significant meaning.

Is there something I am missing?

Thanks,

David