action hhs_get_resources_media_types_format { label: "Get MediaTypes" description: "Information about media types" provider: hhs method: GET path: "/resources/mediaTypes.{format}" encoding: json input: { type: "object" properties: { format: { type: "string" } } required: ["format"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { callback: { type: "string" } meta: { type: "object" properties: { messages: { type: "array" items: { type: "object" properties: { errorCode: { type: "string" } errorDetail: { type: "string" } errorMessage: { type: "string" } userMessage: { type: "string" } } } } pagination: { type: "object" properties: { count: { type: "integer" } currentUrl: { type: "string" } max: { type: "integer" } nextUrl: { type: "string" } offset: { type: "integer" } pageNum: { type: "integer" } previousUrl: { type: "string" } sort: { type: "string" } total: { type: "integer" } totalPages: { type: "integer" } } } status: { type: "integer" } } } results: { type: "array" items: { type: "object" properties: { description: { type: "string" } name: { type: "string" } } } } } } } }