action netbox_extras_journal_entries_read { label: "extras_journal-entries_read" description: "" provider: netbox method: GET path: "/extras/journal-entries/{id}/" encoding: json output: { type: "object" required: ["assigned_object_id", "assigned_object_type", "comments"] properties: { assigned_object: { type: "object" } assigned_object_id: { type: "integer" } assigned_object_type: { type: "string" } comments: { type: "string" } created: { type: "string" format: "date-time" } created_by: { type: "integer" } custom_fields: { type: "object" } display: { type: "string" } id: { type: "integer" } kind: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Info", "Success", "Warning", "Danger"] } value: { type: "string" enum: ["info", "success", "warning", "danger"] } } } last_updated: { type: "string" format: "date-time" } tags: { type: "array" items: { type: "object" required: ["name", "slug"] properties: { color: { type: "string" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } } url: { type: "string" format: "uri" } } } }