action netbox_extras_content_types_read { label: "extras_content-types_read" description: "Read-only list of ContentTypes. Limit results to ContentTypes pertinent to NetBox objects." provider: netbox method: GET path: "/extras/content-types/{id}/" encoding: json output: { type: "object" required: ["app_label", "model"] properties: { app_label: { type: "string" } display: { type: "string" } id: { type: "integer" } model: { type: "string" } url: { type: "string" format: "uri" } } } }