Variable contextSchemaConst

contextSchema: {
    additionalItems: {
        anyOf: readonly [{
            format: "uri";
            type: "string";
        }, {
            type: "object";
        }];
    };
    items: readonly [{
        const: "https://www.w3.org/2018/credentials/v1";
    }];
    minItems: 1;
    type: "array";
} = ...

Type declaration

  • Readonly additionalItems: {
        anyOf: readonly [{
            format: "uri";
            type: "string";
        }, {
            type: "object";
        }];
    }
    • Readonly anyOf: readonly [{
          format: "uri";
          type: "string";
      }, {
          type: "object";
      }]
  • Readonly items: readonly [{
        const: "https://www.w3.org/2018/credentials/v1";
    }]
  • Readonly minItems: 1
  • Readonly type: "array"