Red Hat Satellite Createcontentview Example is an example object payload from Red Hat Satellite, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.
{
"operationId": "createContentView",
"method": "POST",
"path": "/katello/api/v2/content_views",
"summary": "Create a Content View",
"requestExamples": [
{
"contentType": "application/json",
"name": "CreatecontentviewRequestExample",
"example": {
"organization_id": "500123",
"name": "Example Title",
"label": "Example Title",
"description": "A sample description.",
"composite": true,
"rolling": true,
"auto_publish": true,
"solve_dependencies": true,
"import_only": true,
"repository_ids": [
10
],
"component_ids": [
10
],
"environment_ids": [
10
]
}
}
],
"responseExamples": [
{
"status": "201",
"contentType": "application/json",
"name": "Createcontentview201Example",
"example": {
"id": "abc123",
"name": "Example Title",
"label": "Example Title",
"description": "A sample description.",
"organization_id": "500123",
"organization": {
"name": "Example Title",
"label": "Example Title",
"id": "abc123"
},
"composite": true,
"rolling": true,
"auto_publish": true,
"solve_dependencies": true,
"import_only": true,
"generated_for": "example_value",
"default": true,
"repository_ids": [
10
],
"repositories": [
{
"id": "abc123",
"name": "Example Title",
"label": "Example Title",
"content_type": "example_value"
}
],
"component_ids": [
10
],
"versions": [
{
"id": "abc123",
"version": "example_value",
"published": "2026-01-15T10:30:00Z",
"environment_ids": [
{}
]
}
],
"environments": [
{
"id": "abc123",
"name": "Example Title",
"label": "Example Title"
}
],
"activation_keys": [
{
"id": "abc123",
"name": "Example Title"
}
],
"next_version": "example_value",
"last_published": "2026-01-15T10:30:00Z",
"latest_version": "example_value",
"latest_version_id": "500123",
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
}
}
]
}