drchrono · Schema

UserProfilesGroup

EHRElectronic Health RecordsHealthcareMedical RecordsPractice ManagementHIPAAAppointmentsBillingPrescriptionsLab IntegrationFHIR

Properties

Name Type Description
archived boolean Group is archived or not
name string
practice_group string Practice group this user group belongs to
created_at string
updated_at string
members array Users in this user group.
id integer
View JSON Schema on GitHub

JSON Schema

userprofilesgroup.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/drchrono/json-schema/userprofilesgroup.json",
  "title": "UserProfilesGroup",
  "required": [],
  "type": "object",
  "properties": {
    "archived": {
      "readOnly": true,
      "type": "boolean",
      "description": "Group is archived or not",
      "title": "Archived"
    },
    "name": {
      "readOnly": true,
      "type": "string",
      "description": "",
      "title": "Name"
    },
    "practice_group": {
      "readOnly": true,
      "type": "string",
      "description": "Practice group this user group belongs to",
      "title": "Practice group"
    },
    "created_at": {
      "type": "string",
      "description": "",
      "title": "Created at"
    },
    "updated_at": {
      "type": "string",
      "description": "",
      "title": "Updated at"
    },
    "members": {
      "items": {
        "type": "string",
        "description": "ID of `/api/users`",
        "title": ""
      },
      "readOnly": true,
      "type": "array",
      "description": "Users in this user group.",
      "title": "Members"
    },
    "id": {
      "readOnly": true,
      "type": "integer",
      "description": "",
      "title": "ID"
    }
  },
  "x-verbose-required": []
}