Stay organized with collections
Save and categorize content based on your preferences.
Definitions
AppointmentTypeFeed Definition
message AppointmentTypeFeed {
repeated AppointmentType data = 1;
}
AppointmentType Definition
// Info about an appointment type which is supported on the partner's
// platform. E.g. "New patient", "Followup" An AppointmentTypeFeed should be a
// list of this message.
message AppointmentType {
// An opaque string generated by the partner that identifies an appointment
// type. Must be unique across all appointment types. Strongly recommended to
// only include URL-safe characters. (required)
string appointment_type_id = 1;
// The name of the appointment type to be displayed. (required)
Text name = 2;
// ...
}
Text Definition
// A possibly-localized text payload. Some Text fields may contain marked-up
// content.
message Text {
// Required. Text value in an unknown locale, which will be displayed if
// `localized_value` for the user locale is empty or missing. The locale for
// this value may depend on the partner or service provider, and it should not
// be assumed to be any specific language.
string value = 1;
// Per-locale text values. Required.
repeated LocalizedString localized_value = 2;
}
LocalizedString Definition
// Instance of a string in one locale.
message LocalizedString {
// IETF BCP 47 language code, such as "en", "mas", "zh-Hant", "de-CH-1901".
// See http://www.w3.org/International/articles/language-tags/.
// Only "en-US" is currently supported. All other values will be ignored.
string locale = 1;
// Message in the locale above (UTF-8).
string value = 2;
}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[[["AppointmentTypeFeed is a list of AppointmentType messages, which define various appointment types supported by a partner's platform."],["Each AppointmentType must have a unique `appointment_type_id` and a display `name`."],["The `name` field can be localized using the `localized_value` field within the `Text` message, currently supporting only \"en-US\" locale."],["Feeds are recommended to be uploaded in JSON format, despite being defined using protobuffer."],["Sample JSON feeds and a descriptor file are provided for reference and understanding of the feed structure."]]],[]]