RetrievePolicyEntry

{
  "topic": "com.acme/the_policy_id/policies/commands/retrieve",
  "headers": {
    "content-type": "application/vnd.eclipse.ditto+json"
  },
  "path": "/entries/the_label"
}

RetrievePolicyEntryResponse

{
  "topic": "com.acme/the_policy_id/policies/commands/retrieve",
  "headers": {
    "content-type": "application/vnd.eclipse.ditto+json"
  },
  "path": "/entries/the_label",
  "value": {
    "subjects": {
      "google:the_subjectid": {
        "type": "yourSubjectTypeDescription"
      }
    },
    "resources": {
      "thing:/the_resource_path": {
        "grant": [
          "READ",
          "WRITE"
        ],
        "revoke": []
      }
    }
  },
  "status": 200
}