{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Target",
"title": "Target",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "The ID of the Target",
"readOnly": true
},
"domain": {
"type": "string",
"description": "The fully qualified domain name of the Target"
},
"enabled": {
"type": "boolean",
"description": "The enabled property of the Target"
},
"archived": {
"type": "boolean",
"description": "The archived property of the Target"
}
},
"required": [
"domain"
]
}