/**
* Represents information about a credential schema.
*
* @property {string} type - The type of the credential schema.
* @property {string} context - The context in which the credential schema is used.
*/exporttypeCredentialSchemaInfo = {
type: string;
context: string;
};