Skip to content

Care Service

FieldTypeIndexDescription
entityIdstringPKThe Care Id from the third-party system will be used in the Cloud to determine whether to update an existing Care Service record or create a new one.
childIdstringFKchild entity Id
childNamestring
childDOBstringyyyyMMdd
providerIdstringFKprovider entity Id
providerNamestring
startDatestringyyyyMMdd
endDatestringyyyyMMdd
careTypestringsuch as interim, day-care, fcch
fundingSourcestring
scheduleslistschedule object list
isVariablebool
IsAlternativebool
providerRateslistRate object list
rmcRateslistRate object list
familyFeelistfamily fee assignment, FamilyFee object list
statusstringThe status of the care is either new, pending, active, inactive, void,
commentstring
dataobjectCustom data objects can include additional Family attributes, with field definitions adhering to established guidelines.
disabledbool
tagsarraystring array
categorystring
metadataobjectSet of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
FieldTypeDescription
typestringsuch as normal, school
categorystring
scheduleObjectThe container for the weekly schedule
- SundayArrayArray of time slots for Sunday
— timeInStringStart time of a time slot on Sunday
— timeOutStringEnd time of a time slot on Sunday
- MondayArrayArray of time slots for Monday
— timeInStringStart time of a time slot on Monday
— timeOutStringEnd time of a time slot on Monday
- TuesdayArrayArray of time slots for Tuesday
— timeInStringStart time of a time slot on Tuesday
— timeOutStringEnd time of a time slot on Tuesday
- WednesdayArrayArray of time slots for Wednesday
— timeInStringStart time of a time slot on Wednesday
— timeOutStringEnd time of a time slot on Wednesday
- ThursdayArrayArray of time slots for Thursday
— timeInStringStart time of a time slot on Thursday
— timeOutStringEnd time of a time slot on Thursday
- FridayArrayArray of time slots for Friday
— timeInStringStart time of a time slot on Friday
— timeOutStringEnd time of a time slot on Friday
- SaturdayArrayArray of time slots for Saturday
— timeInStringStart time of a time slot on Saturday
— timeOutStringEnd time of a time slot on Saturday
descriptionstring
{
"type": "normal",
"category": "",
"description": "",
"schedule": {
"Sunday": [
{ "timeIn": "08:00", "timeOut": "12:00" },
{ "timeIn": "13:00", "timeOut": "17:00" }
],
"Monday": [
{ "timeIn": "09:00", "timeOut": "12:00" },
{ "timeIn": "14:00", "timeOut": "18:00" }
],
"Tuesday": [
{ "timeIn": "09:00", "timeOut": "12:00" },
{ "timeIn": "14:00", "timeOut": "18:00" }
],
"Wednesday": [
{ "timeIn": "09:00", "timeOut": "12:00" },
{ "timeIn": "14:00", "timeOut": "18:00" }
],
"Thursday": [
{ "timeIn": "09:00", "timeOut": "12:00" },
{ "timeIn": "14:00", "timeOut": "18:00" }
],
"Friday": [
{ "timeIn": "09:00", "timeOut": "12:00" },
{ "timeIn": "14:00", "timeOut": "18:00" }
],
"Saturday": [
{ "timeIn": "10:00", "timeOut": "14:00" },
{ "timeIn": "15:00", "timeOut": "19:00" }
]
}
}

{ collapsible=“true” collapsed-title=“Schedule Model Example”}

FieldTypeDescription
startDatestringeffective date
endDatestring
childCategorystringsuch as infant, 2-5, 6+
typeFTstringsuch as hourly, daily, weekly, monthly, etc.
rateFTnumber
typePTstringsuch as hourly, daily, weekly, monthly, etc.
ratePTnumber
descriptionstring
metadataobject
FieldTypeDescription
startDatestringyyyyMMdd 20230101
endDatestring
typestringsuch as full-time, part-time etc.
quantitynumbermonthly hours
descriptionstring
Field NameTypeDescription
contractCodestring
contractNamestring
specialNeedFactorstring
IsSecondarybool
customerFieldsobjectSet of key-value pairs that you can attach to an object
{
"entityId": "care12345",
"childId": "child67890",
"childName": "John Doe",
"childDOB": "20100101",
"providerId": "provider12345",
"providerName": "Provider ABC",
"startDate": "20230101",
"endDate": "20231231",
"careType": "Day Care",
"fundingSource": "Government",
"schedules": [
{
"type": "normal",
"category": "",
"description": "",
"schedule": {
"Sunday": [
{ "timeIn": "08:00", "timeOut": "12:00" },
{ "timeIn": "13:00", "timeOut": "17:00" }
],
"Monday": [
{ "timeIn": "09:00", "timeOut": "12:00" },
{ "timeIn": "14:00", "timeOut": "18:00" }
],
"Tuesday": [
{ "timeIn": "09:00", "timeOut": "12:00" },
{ "timeIn": "14:00", "timeOut": "18:00" }
],
"Wednesday": [
{ "timeIn": "09:00", "timeOut": "12:00" },
{ "timeIn": "14:00", "timeOut": "18:00" }
],
"Thursday": [
{ "timeIn": "09:00", "timeOut": "12:00" },
{ "timeIn": "14:00", "timeOut": "18:00" }
],
"Friday": [
{ "timeIn": "09:00", "timeOut": "12:00" },
{ "timeIn": "14:00", "timeOut": "18:00" }
],
"Saturday": [
{ "timeIn": "10:00", "timeOut": "14:00" },
{ "timeIn": "15:00", "timeOut": "19:00" }
]
}
}
],
"isVariable": false,
"IsAlternative": false,
"providerRates": [
{
"rateType": "Hourly",
"amount": 15.0
}
],
"rmcRates": [
{
"rateType": "Daily",
"amount": 100.0
}
],
"familyFee": {
"feeAmount": 50.0
},
"status": "Active",
"comment": "Regular daycare service",
"data": {
"additionalInfo1": "value1",
"additionalInfo2": "value2"
},
"disabled": false,
"tags": ["Tag1", "Tag2"],
"category": "Child Care"
}