{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-schema/public-api-v6-update-client-service-request-schema.json",
"title": "UpdateClientServiceRequest",
"description": "Implementation of the 'UpdateClientServiceRequest' model.",
"type": "object",
"properties": {
"ServiceId": {
"type": "integer",
"format": "int32",
"description": "The ID of the service to update.",
"example": 123456
},
"ActiveDate": {
"type": "string",
"format": "date-time",
"description": "The date that the service became active.",
"example": "2026-05-28T14:30:00Z"
},
"ExpirationDate": {
"type": "string",
"format": "date-time",
"description": "The date that the service is to expire.",
"example": "2026-05-28T14:30:00Z"
},
"Count": {
"type": "integer",
"format": "int32",
"description": "The number of client service sessions to update.",
"example": 10
},
"Test": {
"type": "boolean",
"description": "When `true`, indicates that input information is to be validated, but not committed.
When `false` or omitted, the database is affected.
Default: **false**",
"example": true
}
}
}