{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/infra_Target", "title": "infra_Target", "properties": { "created_at": { "description": "Date and time at which the target was created", "example": "2019-08-24T14:15:22Z", "format": "date-time", "type": "string" }, "hostname": { "description": "A non-unique field that refers to a target", "example": "infra-access-target", "type": "string" }, "id": { "$ref": "#/components/schemas/infra_TargetId" }, "ip": { "$ref": "#/components/schemas/infra_IPInfo" }, "modified_at": { "description": "Date and time at which the target was modified", "example": "2019-08-24T14:15:22Z", "format": "date-time", "type": "string" } }, "required": [ "id", "hostname", "ip", "created_at", "modified_at" ], "type": "object" }