action id4i_list_id4ns { label: "ID4ns of a privilege" description: "Listing ID4ns of a id4n concerning privilege" provider: id4i method: GET path: "/api/v1/apikeys/{key}/privileges/{privilege}/id4ns" encoding: json input: { type: "object" properties: { key: { type: "string" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } privilege: { type: "string" } } required: ["key", "privilege"] additionalProperties: false } output: { type: "object" required: ["elements", "limit", "offset"] properties: { elements: { type: "array" items: { type: "object" properties: { createdTimestamp: { type: "integer" format: "int64" description: "The UTC unix timestamp of when this ID has been created" } holderOrganizationId: { type: "string" description: "Organization namespace of the holder of the ID" } id4n: { type: "string" description: "The ID" } label: { type: "string" } ownerOrganizationId: { type: "string" description: "Organization namespace of the ID owner" } properties: { type: "object" description: "The properties of the organization" } type: { type: "string" description: "The type of ID" enum: ["GUID", "ROUTING_COLLECTION", "LOGISTIC_COLLECTION", "LABELLED_COLLECTION"] } } } } limit: { type: "integer" format: "int32" description: "The number of returned elements" } offset: { type: "integer" format: "int32" description: "Starting with the n-th element" } total: { type: "integer" format: "int32" description: "The total number of elements" } } } }