icarTreatmentEventResource
Description
Defines a single animal health treatment, which may be medication or procedure.
The icarTreatmentEventResource schema inherits from icarAnimalEventCoreResource.
Properties
Name | Description | Required | Type |
---|---|---|---|
Medicine | A reference to the medicine used (where applicable). | No | icarMedicineReferenceType |
Procedure | Medicine application method or a non-medicine procedure. | No | string |
Batches | Batches and expiry details for the medicine administered. | No | Array of icarMedicineBatchType |
Withdrawals | Withholding details for the treatment administered. | No | Array of icarMedicineWithdrawalType |
Dose | Details of medicine dose administered | No | icarMedicineDoseType |
Site | Body site where the treatment was administered. | No | string |
Positions | The positions to be treated | No | Array of icarPositionType |
Comment | A comment recorded about the treatment or its outcome. | No | string |
Animal | Unique animal scheme and identifier combination. | Yes | icarIdentifierType |
Id | Unique identifier in the source system for this event. | No | string |
EventDateTime | RFC3339 UTC date and time (see https://ijmacd.github.io/rfc3339-iso8601/). | No | date-time |
TraitLabel | If the event represents a formal trait, identifies the recording system and trait. | No | icarIdentifierType |
Responsible | Use if an observation is manually recorded, or an event is carried out or authorised by a person. SHOULD be a person object. | No | string |
ContemporaryGroup | For manually recorded events, record any contemporary group code that would affect statistical analysis. | No | string |
Remark | A comment or remark field for additional user-specified information about the event. | No | string |
Self | Uniform resource identifier (URI) of the resource (rel=self). | No | string |
Meta | Meta-data for the resource. Mandatory if you wish to support synchronisation. | No | icarMetaDataType |
Location | Unique location scheme and identifier combination. | No | icarIdentifierType |
Examples
Example 1
{
"medicine": {
"name": "name",
"approved": "approved",
"registeredIdentifier": {
"id": "id",
"scheme": "scheme"
},
"@context": "@context",
"@id": "@id",
"@type": "Link",
"identifier": {
"id": "id",
"scheme": "scheme"
},
"reltype": "reltype",
"href": "href"
},
"procedure": "procedure",
"batches": [
{
"identifier": "identifier",
"expiryDate": "2024-10-30T01:50:44.6486646+00:00"
}
],
"withdrawals": [
{
"productType": "Meat",
"endDate": "2024-10-30T01:50:44.6486684+00:00",
"market": "market"
}
],
"dose": {
"doseQuantity": 0.0,
"doseUnits": "MLT"
},
"site": "site",
"positions": [
{
"position": "LegsFrontLeft"
}
],
"comment": "comment",
"animal": {
"id": "id",
"scheme": "scheme"
}
}