Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| unitNumber | string | |
| horsepowerRating | integer | |
| engineType | string | |
| compressionType | string | |
| status | string | |
| location | string | |
| customer | string | |
| deploymentDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/archrock/refs/heads/main/json-schema/archrock-investor-relations-api-equipment-schema.json",
"title": "Equipment",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"unitNumber": {
"type": "string"
},
"horsepowerRating": {
"type": "integer"
},
"engineType": {
"type": "string"
},
"compressionType": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"active",
"idle",
"maintenance"
]
},
"location": {
"type": "string"
},
"customer": {
"type": "string"
},
"deploymentDate": {
"type": "string",
"format": "date"
}
}
}