{

"person_core_create": [
  { "value": "create", "conditions": {
      "at_least": {"person_core": "view_people_manager"}
    }
  }
],
"person_core_edit": [
  { "value": "edit", "conditions": {
      "at_least": {"person_core": "view_people_manager"}
    }
  }
],
"person_details": [
  { "value": "view", "conditions": {
      "at_least": {"person_core": "attach"}
    }
  },
  { "value": "edit_public", "conditions": {
      "one_of": {
        "person_core_edit":   "edit",
        "person_core_create": "create"
      }
    }
  },
  { "value": "view_private", "conditions": {
      "at_least": {"person_core": "attach" }
    }
  },
  { "value": "edit_private", "conditions": {
      "one_of": {
        "person_core_edit":   "edit",
        "person_core_create": "create"
      }
    }
  }
],
"person_account": [
  { "value": "view", "conditions": {
      "at_least": {"person_core": "attach" }
    }
  },
  { "value": "create", "conditions": {
      "at_least": {"person_core_create": "create"}
    }
  },
  { "value": "edit", "conditions": {
      "at_least": {"person_core_edit": "edit"}
    }
  }
],
"person_abilities": [
  { "value": "view", "conditions": {
      "at_least": {"person_core_edit": "edit"}
    }
  }
]

}