Structured response bodyBody structurat al răspunsului
application/json
Structured response bodyBody structurat al răspunsului
Complete response schemaSchema completă a răspunsului
{
"type": "object",
"additionalProperties": false,
"required": [
"activations"
],
"properties": {
"activations": {
"type": "array",
"maxItems": 100,
"items": {
"$ref": "#/components/schemas/ConfigurationActivation",
"type": "object",
"additionalProperties": false,
"required": [
"id",
"kind",
"family_id",
"family_slug",
"version_id",
"version",
"content_hash",
"effective_from",
"scheduled_by",
"correlation_id",
"scheduled_at",
"status"
],
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"kind": {
"type": "string",
"enum": [
"ingestion_model",
"transformer",
"template"
]
},
"family_id": {
"type": "string",
"format": "uuid"
},
"family_slug": {
"type": "string",
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
},
"version_id": {
"type": "string",
"format": "uuid"
},
"version": {
"type": "integer",
"minimum": 1
},
"content_hash": {
"type": "string",
"pattern": "^[0-9a-f]{64}$"
},
"effective_from": {
"$ref": "#/components/schemas/CanonicalTimestamp",
"type": "string",
"format": "date-time",
"description": "UTC timestamp serialized with RFC3339Nano precision."
},
"scheduled_by": {
"type": "string",
"format": "uuid"
},
"correlation_id": {
"type": "string",
"minLength": 1
},
"scheduled_at": {
"$ref": "#/components/schemas/CanonicalTimestamp",
"type": "string",
"format": "date-time",
"description": "UTC timestamp serialized with RFC3339Nano precision."
},
"cancelled_at": {
"$ref": "#/components/schemas/CanonicalTimestamp",
"type": "string",
"format": "date-time",
"description": "UTC timestamp serialized with RFC3339Nano precision."
},
"cancellation_code": {
"type": "string",
"pattern": "^[a-z0-9]+(?:_[a-z0-9]+)*$"
},
"status": {
"type": "string",
"enum": [
"scheduled",
"active",
"superseded",
"cancelled"
]
}
}
}
}
}
}{
"activations": [
{
"id": "11111111-1111-4111-8111-000000000001",
"kind": "ingestion_model",
"family_id": "11111111-1111-4111-8111-000000000001",
"family_slug": "synthetic-example",
"version_id": "11111111-1111-4111-8111-000000000001",
"version": 1,
"content_hash": "0000000000000000000000000000000000000000000000000000000000000000",
"effective_from": "2026-08-01T10:00:00Z",
"scheduled_by": "11111111-1111-4111-8111-000000000001",
"correlation_id": "11111111-1111-4111-8111-000000000001",
"scheduled_at": "2026-08-01T10:00:00Z",
"status": "scheduled"
}
]
}