action biapi_get_certificate_type { label: "Get the latest certificate of a type" description: "" provider: biapi method: GET path: "/certificate/{type}" encoding: json input: { type: "object" properties: { expand: { type: "string" } type: { type: "string" } } required: ["type"] additionalProperties: false } output: { type: "object" required: ["created", "id", "id_private_key_file", "id_public_key_file", "type"] properties: { created: { type: "string" format: "date-time" } id: { type: "integer" } id_private_key_file: { type: "integer" } id_public_key_file: { type: "integer" } type: { type: "string" } } } }