$SchemaVersionPatch: {
    properties: {
        id: {
            type: "string";
        };
        op: {
            isRequired: true;
            type: "string";
        };
        value: {
            type: "SchemaVersion";
        };
    };
} = ...

Type declaration

  • properties: {
        id: {
            type: "string";
        };
        op: {
            isRequired: true;
            type: "string";
        };
        value: {
            type: "SchemaVersion";
        };
    }
    • id: {
          type: "string";
      }
      • type: "string"
    • op: {
          isRequired: true;
          type: "string";
      }
      • isRequired: true
      • type: "string"
    • value: {
          type: "SchemaVersion";
      }
      • type: "SchemaVersion"