action netbox_tenancy_contact_assignments_read { label: "tenancy_contact-assignments_read" description: "" provider: netbox method: GET path: "/tenancy/contact-assignments/{id}/" encoding: json output: { type: "object" required: ["contact", "content_type", "object_id"] properties: { contact: { type: "object" required: ["name"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } url: { type: "string" format: "uri" } } } content_type: { type: "string" } created: { type: "string" format: "date-time" } display: { type: "string" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } object: { type: "object" } object_id: { type: "integer" } priority: { type: "object" required: ["label", "value"] properties: { label: { type: "string" enum: ["Primary", "Secondary", "Tertiary", "Inactive"] } value: { type: "string" enum: ["primary", "secondary", "tertiary", "inactive"] } } } role: { type: "object" required: ["name", "slug"] properties: { display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } url: { type: "string" format: "uri" } } } }