action netbox_extras_saved_filters_read { label: "extras_saved-filters_read" description: "" provider: netbox method: GET path: "/extras/saved-filters/{id}/" encoding: json output: { type: "object" required: ["content_types", "name", "parameters", "slug"] properties: { content_types: { type: "array" items: { type: "string" } } created: { type: "string" format: "date-time" } description: { type: "string" } display: { type: "string" } enabled: { type: "boolean" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" } parameters: { type: "object" } shared: { type: "boolean" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } user: { type: "integer" } weight: { type: "integer" } } } }