action drchrono_clinical_note_field_values_create { label: "clinical_note_field_values_create" description: "Create clinical note field value" provider: drchrono method: POST path: "/api/clinical_note_field_values" encoding: json input: { type: "object" properties: { appointment: { type: "integer" } clinical_note_field: { type: "integer" } clinical_note_template: { type: "integer" } doctor: { type: "integer" } since: { type: "string" } } additionalProperties: false } output: { type: "object" description: "Values entered by doctor when charting a particular appointment" required: ["appointment", "clinical_note_field", "value"] properties: { appointment: { type: "integer" description: "ID of appointment that the value applies to" } clinical_note_field: { type: "integer" description: "ID of `/api/clinical_note_field_types` object that indicates type of the value" } created_at: { type: "string" } id: { type: "integer" } updated_at: { type: "string" } value: { type: "string" description: "Value of the field. Interpretation varies by field type.\n`clinical_note_field.data_type` | Value | Description\n------------------------------- | ----- | -----------\n`\"Header\"` | string | \n`\"SubHeader\"` | string |\n`\"String\"` | string | If field is single/multiple select field, make sure value presents in allowed values set.\n`\"TwoStrings\"` | string | String is seperated by `\"/\"`\n`\"NullCheckbox\"` | string | Can be `\"0\"`, `\"1\"`, `\"2\"`, `\"0\"`-`Not selected`, `\"1\"`-`No`, `\"2\"`-`Yes`\n`\"Checkbox\"` | string | Can be `\"True\"`, `\"False\"`\n" } } } }