Variable issuerSchemaConst

issuerSchema: {
    oneOf: readonly [{
        format: "uri";
        type: "string";
    }, {
        properties: {
            id: {
                format: "uri";
                type: "string";
            };
            type: {
                type: "string";
            };
        };
        required: readonly ["id"];
        type: "object";
    }];
} = ...

Type declaration

  • Readonly oneOf: readonly [{
        format: "uri";
        type: "string";
    }, {
        properties: {
            id: {
                format: "uri";
                type: "string";
            };
            type: {
                type: "string";
            };
        };
        required: readonly ["id"];
        type: "object";
    }]