action parliament_get_api_v1_publications_publication_id_documents_document_id { label: "Return information on a document." provider: parliament method: GET path: "/api/v1/Publications/{publicationId}/Documents/{documentId}" encoding: json input: { type: "object" properties: { documentId: { type: "integer" format: "int32" } publicationId: { type: "integer" format: "int32" } } required: ["documentId", "publicationId"] additionalProperties: false } output: { type: "object" properties: { contentLength: { type: "integer" format: "int32" } contentType: { type: "string" } filename: { type: "string" } id: { type: "integer" format: "int32" } } additionalProperties: false } }