import Translate from "@docusaurus/Translate" import { printSchemaType } from "@theme/JSONSchemaViewer/utils/QualifierMessages" import type { JSX } from "react" import type { JSONSchema } from "@theme/JSONSchemaViewer/types" type Props = { schema: Exclude } export default function ContentEncoding(props: Props): JSX.Element { const { schema } = props // Translated Labels const encodingLabel = ( {"Encoding :"} ) return (
{encodingLabel}   {printSchemaType(schema.contentEncoding!)}
) }