action parliament_get_api_v1_publication_types { label: "Returns a list of publication types." provider: parliament method: GET path: "/api/v1/PublicationTypes" encoding: json input: { type: "object" properties: { Skip: { type: "integer" format: "int32" } Take: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" properties: { items: { type: "array" items: { type: "object" properties: { description: { type: "string" } id: { type: "integer" format: "int32" } name: { type: "string" } } additionalProperties: false } } itemsPerPage: { type: "integer" format: "int32" } totalResults: { type: "integer" format: "int32" } } additionalProperties: false } }