Variable vcSubjectSchemaConst

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

Type declaration

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